Update LRU cache backend used for NNTP server

This commit is contained in:
Bryan Ashby 2022-04-05 21:01:35 -06:00
parent 35047dabca
commit b2fda13085
No known key found for this signature in database
GPG Key ID: C2C1B501E4EFD994
2 changed files with 2 additions and 2 deletions

View File

@ -125,7 +125,7 @@ class NNTPServer extends NNTPServerBase {
const config = Config(); const config = Config();
this.groupCache = new LRU({ this.groupCache = new LRU({
max : _.get(config, 'contentServers.nntp.cache.maxItems', 200), max : _.get(config, 'contentServers.nntp.cache.maxItems', 200),
maxAge : _.get(config, 'contentServers.nntp.cache.maxAge', 1000 * 30), // default=30s ttl : _.get(config, 'contentServers.nntp.cache.maxAge', 1000 * 30), // default=30s
}); });
} }

View File

@ -38,7 +38,7 @@
"ini-config-parser": "^1.0.4", "ini-config-parser": "^1.0.4",
"inquirer": "^8.2.2", "inquirer": "^8.2.2",
"lodash": "4.17.21", "lodash": "4.17.21",
"lru-cache": "6.0.0", "lru-cache": "^7.7.3",
"mime-types": "^2.1.35", "mime-types": "^2.1.35",
"minimist": "^1.2.6", "minimist": "^1.2.6",
"moment": "^2.29.2", "moment": "^2.29.2",