overleaf/services/spelling/app/js/MongoCache.js
2021-07-13 12:04:47 +01:00

11 lines
267 B
JavaScript

// TODO: This file was created by bulk-decaffeinate.
// Sanity-check the conversion and remove this comment.
const LRU = require('lru-cache')
const cacheOpts = {
max: 15000,
maxAge: 1000 * 60 * 60 * 10,
}
const cache = new LRU(cacheOpts)
module.exports = cache