Files
NodeBB/src/posts/cache.js

10 lines
236 B
JavaScript
Raw Normal View History

var LRU = require('lru-cache');
2016-10-04 20:10:59 +03:00
var meta = require('../meta');
var cache = LRU({
2016-10-04 20:10:59 +03:00
max: parseInt(meta.config.postCacheSize, 10) || 1048576,
length: function (n) { return n.length; },
maxAge: 1000 * 60 * 60
});
module.exports = cache;