Files
NodeBB/src/posts/cache.js
Barış Soner Uşaklı 9c022afae1 Parse int (#6853)
* Store config fields as JSON in the db

Fewer parseInts

* Remove unnecessary parseInts

* remove some dupe code add tests

* remove console.log

* remove more parseInts

* WIP: read meta.configs defaults from defaults.json

remove more parseInts

* more work

* add log for failing test

* update admin pwd

* fix tests, dont require posts/cache before configs are initialized

* handle saves

* Test boolean conditions

* remove more parseInts

* Fix boolean values

* remove lots more parseInts

* removed json parsing

* renamed var to number

* categories dont have timestamp
2018-10-21 16:47:51 -04:00

15 lines
249 B
JavaScript

'use strict';
var LRU = require('lru-cache');
var meta = require('../meta');
var cache = LRU({
max: meta.config.postCacheSize,
length: function (n) { return n.length; },
maxAge: 0,
});
cache.hits = 0;
cache.misses = 0;
module.exports = cache;