Files
NodeBB/src/posts/cache.js

13 lines
253 B
JavaScript
Raw Normal View History

2017-02-18 02:23:47 -07:00
'use strict';
2017-05-27 01:44:26 -04:00
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; },
2017-02-17 19:31:21 -07:00
maxAge: 1000 * 60 * 60,
});
2017-02-18 02:30:48 -07:00
module.exports = cache;