increase mongo cache size

This commit is contained in:
Henry Oswald 2019-01-14 10:10:32 +00:00
parent 74ceea14dd
commit 5eaf4c8551

View file

@ -1,7 +1,7 @@
LRU = require("lru-cache")
cacheOpts =
max: 5000
maxAge: 1000 * 60 * 60
max: 15000
maxAge: 1000 * 60 * 60 * 10
cache = LRU(cacheOpts)