[Cache service | Trunk]

1.add url in logs
2. add response in cache only for requests that return code 200



git-svn-id: https://svn.driver.research-infrastructures.eu/driver/dnet40/modules/uoa-services-portal/trunk@57529 d315682c-612b-4755-9ff5-7f18f6832af3
This commit is contained in:
argiro.kokogiannaki 2019-11-06 11:09:06 +00:00
parent 11b108ce0f
commit fe92edf0da
1 changed files with 5 additions and 2 deletions

View File

@ -12,13 +12,16 @@ let cache = (duration) => {
return (req, res, next) => {
let key = '__express__' + req.originalUrl || req.url
console.log(req.originalUrl || req.url);
let cachedBody = mcache.get(key)
if (cachedBody) {
res.send(JSON.parse(cachedBody))
} else {
res.sendResponse = res.send
res.send = (body) => {
mcache.put(key, body, duration * 1000);
if(res.statusCode==200){
mcache.put(key, body, duration * 1000);
}
res.sendResponse(body)
};
@ -28,7 +31,7 @@ let cache = (duration) => {
};
app.get('/get',cache(20), cors(), (req, res) => {
app.get('/get',cache(30), cors(), (req, res) => {
setTimeout(() => {
const url = (req.query)?req.query.url:null;
if (!url){