closes #5081
parent
f00c3abbc5
commit
9d0dc35703
@ -1,11 +1,10 @@
|
|||||||
var LRU = require('lru-cache');
|
var LRU = require('lru-cache');
|
||||||
|
var meta = require('../meta');
|
||||||
|
|
||||||
var cache = LRU({
|
var cache = LRU({
|
||||||
max: 1048576,
|
max: parseInt(meta.config.postCacheSize, 10) || 1048576,
|
||||||
length: function (n) { return n.length; },
|
length: function (n) { return n.length; },
|
||||||
maxAge: 1000 * 60 * 60
|
maxAge: 1000 * 60 * 60
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
module.exports = cache;
|
module.exports = cache;
|
Loading…
Reference in New Issue