Files
NodeBB/src/posts/cache.js

13 lines
274 B
JavaScript
Raw Normal View History

2017-02-18 02:23:47 -07:00
'use strict';
const cacheCreate = require('../cacheCreate');
const meta = require('../meta');
module.exports = cacheCreate({
name: 'post',
max: meta.config.postCacheSize,
length: function (n) { return n.length; },
maxAge: 0,
enabled: global.env === 'production',
});