diff options
author | mat <github@matdoes.dev> | 2021-05-31 20:51:45 -0500 |
---|---|---|
committer | mat <github@matdoes.dev> | 2021-05-31 20:51:45 -0500 |
commit | 18ea9e67c963690c4f62b7376ce289cc78bf2daa (patch) | |
tree | 2c29fe15a150298f0d8249863b735f612ed9c359 /src/hypixelCached.ts | |
parent | f1e85074ce32f62a7b44d5bd6c8399d99f2368c5 (diff) | |
download | skyblock-api-18ea9e67c963690c4f62b7376ce289cc78bf2daa.tar.gz skyblock-api-18ea9e67c963690c4f62b7376ce289cc78bf2daa.tar.bz2 skyblock-api-18ea9e67c963690c4f62b7376ce289cc78bf2daa.zip |
decrease basicPlayerCache maxAge more
Diffstat (limited to 'src/hypixelCached.ts')
-rw-r--r-- | src/hypixelCached.ts | 4 |
1 files changed, 2 insertions, 2 deletions
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({ |