diff options
-rw-r--r-- | build/hypixelCached.js | 4 | ||||
-rw-r--r-- | src/hypixelCached.ts | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/build/hypixelCached.js b/build/hypixelCached.js index cb078f2..8da20e3 100644 --- a/build/hypixelCached.js +++ b/build/hypixelCached.js @@ -51,10 +51,10 @@ exports.playerCache = new node_cache_1.default({ checkperiod: 10, useClones: true, }); -// cache "basic players" (players without profiles) for 30 minutes +// cache "basic players" (players without profiles) for 20 minutes exports.basicPlayerCache = new lru_cache_1.default({ max: 10000, - maxAge: 60 * 30 * 1000, + maxAge: 60 * 20 * 1000, }); exports.profileCache = new node_cache_1.default({ stdTTL: 30, diff --git a/src/hypixelCached.ts b/src/hypixelCached.ts index 338dc98..89bf2ae 100644 --- a/src/hypixelCached.ts +++ b/src/hypixelCached.ts @@ -35,10 +35,10 @@ export const playerCache = new NodeCache({ useClones: true, }) -// cache "basic players" (players without profiles) for 30 minutes +// cache "basic players" (players without profiles) for 20 minutes export const basicPlayerCache: LRUCache<string, CleanPlayer> = new LRUCache({ max: 10000, - maxAge: 60 * 30 * 1000, + maxAge: 60 * 20 * 1000, }) export const profileCache = new NodeCache({ |