overleaf/services/spelling/app/coffee/MongoCache.coffee
2015-03-03 14:28:47 +00:00

8 lines
No EOL
122 B
CoffeeScript

LRU = require("lru-cache")
cacheOpts =
max: 5000
maxAge: 1000 * 60 * 60
cache = LRU(cacheOpts)
module.exports = cache