mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-12-29 11:50:36 +01:00
15 lines
253 B
JavaScript
15 lines
253 B
JavaScript
'use strict';
|
|
|
|
var LRU = require('lru-cache');
|
|
var meta = require('../meta');
|
|
|
|
var cache = new LRU({
|
|
max: meta.config.postCacheSize,
|
|
length: function (n) { return n.length; },
|
|
maxAge: 0,
|
|
});
|
|
cache.hits = 0;
|
|
cache.misses = 0;
|
|
|
|
module.exports = cache;
|