mirror of
https://github.com/NodeBB/NodeBB.git
synced 2026-01-15 03:52:46 +01:00
10 lines
236 B
JavaScript
10 lines
236 B
JavaScript
var LRU = require('lru-cache');
|
|
var meta = require('../meta');
|
|
|
|
var cache = LRU({
|
|
max: parseInt(meta.config.postCacheSize, 10) || 1048576,
|
|
length: function (n) { return n.length; },
|
|
maxAge: 1000 * 60 * 60
|
|
});
|
|
|
|
module.exports = cache; |