diff --git a/src/backend/common/Cache.ts b/src/backend/common/Cache.ts index 72245f8b..70dddc81 100644 --- a/src/backend/common/Cache.ts +++ b/src/backend/common/Cache.ts @@ -168,7 +168,7 @@ export const initMemoryCache = (opts: Parameters[0] = {}): Ke export const flatCacheCreate = (opts: FlatCacheOptions) => { return new FlatCache({ ttl: 0, - lruSize: 500, + lruSize: 2000, cacheDir: opts.cacheDir ?? configDir, cacheId: opts.cacheId ?? 'scrobble.cache', persistInterval: 1 * 1000 * 60,