[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:
parent
11b108ce0f
commit
fe92edf0da
|
@ -12,13 +12,16 @@ let cache = (duration) => {
|
||||||
return (req, res, next) => {
|
return (req, res, next) => {
|
||||||
|
|
||||||
let key = '__express__' + req.originalUrl || req.url
|
let key = '__express__' + req.originalUrl || req.url
|
||||||
|
console.log(req.originalUrl || req.url);
|
||||||
let cachedBody = mcache.get(key)
|
let cachedBody = mcache.get(key)
|
||||||
if (cachedBody) {
|
if (cachedBody) {
|
||||||
res.send(JSON.parse(cachedBody))
|
res.send(JSON.parse(cachedBody))
|
||||||
} else {
|
} else {
|
||||||
res.sendResponse = res.send
|
res.sendResponse = res.send
|
||||||
res.send = (body) => {
|
res.send = (body) => {
|
||||||
mcache.put(key, body, duration * 1000);
|
if(res.statusCode==200){
|
||||||
|
mcache.put(key, body, duration * 1000);
|
||||||
|
}
|
||||||
res.sendResponse(body)
|
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(() => {
|
setTimeout(() => {
|
||||||
const url = (req.query)?req.query.url:null;
|
const url = (req.query)?req.query.url:null;
|
||||||
if (!url){
|
if (!url){
|
||||||
|
|
Loading…
Reference in New Issue