overleaf/services/spelling/app/coffee/MongoCache.coffee

8 lines
128 B
CoffeeScript
Raw Normal View History

2015-03-03 09:28:47 -05:00
LRU = require("lru-cache")
cacheOpts =
2019-01-14 05:10:32 -05:00
max: 15000
maxAge: 1000 * 60 * 60 * 10
2015-03-03 09:28:47 -05:00
cache = LRU(cacheOpts)
module.exports = cache