Commit 37f6a355 authored by Mark Harding's avatar Mark Harding

(chore): reduce caching size and output stats

No related merge requests found
Pipeline #116527620 passed with stages
in 44 minutes and 49 seconds
......@@ -103,7 +103,10 @@ app.get('/undefined', (req, res) => {
// cache
const NodeCache = require('node-cache');
const myCache = new NodeCache({ stdTTL: 5 * 60, checkperiod: 120 });
const myCache = new NodeCache({
stdTTL: 2 * 60, // 2 minute cache
checkperiod: 60, // Check every minute
});
const cache = () => {
return (req, res, next) => {
......@@ -132,6 +135,10 @@ const cache = () => {
};
};
app.get('node-cache-stats', (req, res) => {
res.sendResponse(myCache.getStats());
});
// All regular routes use the Universal engine
app.get('*', cache(), (req, res) => {
const http =
......
Please register or to comment