mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-02 12:05:57 +01:00
13 lines
253 B
JavaScript
13 lines
253 B
JavaScript
'use strict';
|
|
|
|
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;
|