mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
12 lines
262 B
JavaScript
12 lines
262 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 = LRU(cacheOpts)
|
||
|
|
||
|
module.exports = cache
|