mirror of
https://github.com/NodeBB/NodeBB.git
synced 2025-11-01 19:46:01 +01:00
* feat: #8824, cache refactor ability to disable caches ability to download contents of cache refactor cache modules to remove duplicated code * fix: remove duplicate hit/miss tracking check cacheEnabled in getUncachedKeys
10 lines
137 B
JavaScript
10 lines
137 B
JavaScript
'use strict';
|
|
|
|
const cacheCreate = require('./cacheCreate');
|
|
|
|
module.exports = cacheCreate({
|
|
name: 'local',
|
|
max: 4000,
|
|
maxAge: 0,
|
|
});
|