diff --git a/services/spelling/app/coffee/ASpell.coffee b/services/spelling/app/coffee/ASpell.coffee index be14b85f7f..8f70ab19f8 100644 --- a/services/spelling/app/coffee/ASpell.coffee +++ b/services/spelling/app/coffee/ASpell.coffee @@ -6,8 +6,9 @@ fs = require 'fs' settings = require("settings-sharelatex") Path = require("path") -cache = LRU(10000) OneMinute = 60 * 1000 +opts = {max:10000, maxAge: OneMinute * 60 * 10} +cache = LRU(opts) cacheFsPath = Path.resolve(settings.cacheDir, "spell.cache") cacheFsPathTmp = cacheFsPath + ".tmp"