From a7b3be3faa2804b734c41acbddf4244eb4ff7945 Mon Sep 17 00:00:00 2001 From: "konstantina.galouni" Date: Tue, 15 Sep 2020 11:54:35 +0000 Subject: [PATCH] [Trunk | Explore Services]: cache.js: In longCachingRequests include paths "/full" (and "/communityFull") and "/openaire/info" (for last index date). git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-services-portal/trunk@59383 d315682c-612b-4755-9ff5-7f18f6832af3 --- services/cache/mecache/cache.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/cache/mecache/cache.js b/services/cache/mecache/cache.js index 228efa38..8d5e557e 100644 --- a/services/cache/mecache/cache.js +++ b/services/cache/mecache/cache.js @@ -9,7 +9,7 @@ const URL = require('url'); const expireShort = 2 * 60 * 1000; //2mins const expireLong = 24 * 60 * 60 * 1000; //24 hours const cacheMaxSize =500; -const longCachingRequests = ["/communityFull/", "/pagehelpcontent","/provision/mvc/vocabularies/","/pages?page_route=", "/allmetrics", "/countryusagestats/"]; +const longCachingRequests = ["/communityFull", "/full", "/pagehelpcontent","/provision/mvc/vocabularies/","/pages?page_route=", "/allmetrics", "/countryusagestats/", "/openaire/info"]; let cors = require('cors'); app.use(cors());