From 30fc35f74e8692db533250aa8114fcdd0aa297f9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 19 Mar 2022 20:06:52 -0500 Subject: Bump @types/lru-cache from 5.1.1 to 7.4.0 (#217) * Bump @types/lru-cache from 5.1.1 to 7.4.0 Bumps [@types/lru-cache](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/lru-cache) from 5.1.1 to 7.4.0. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/lru-cache) --- updated-dependencies: - dependency-name: "@types/lru-cache" dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] * Fix code to be compatible with new lru cache Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: mat Co-authored-by: mat <27899617+mat-1@users.noreply.github.com> --- src/hypixelCached.ts | 2 +- src/index.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/hypixelCached.ts b/src/hypixelCached.ts index 3d8f04c..1cfc639 100644 --- a/src/hypixelCached.ts +++ b/src/hypixelCached.ts @@ -39,7 +39,7 @@ export const playerCache = new NodeCache({ // cache "basic players" (players without profiles) for 20 minutes export const basicPlayerCache: LRUCache = new LRUCache({ max: 10000, - maxAge: 60 * 20 * 1000, + ttl: 60 * 20 * 1000, }) export const profileCache = new NodeCache({ diff --git a/src/index.ts b/src/index.ts index fe35009..4464ca7 100644 --- a/src/index.ts +++ b/src/index.ts @@ -47,7 +47,7 @@ app.get('/', async (req, res) => { usernameCacheSize: usernameCache.keys().length, basicProfilesCacheSize: basicProfilesCache.keys().length, playerCacheSize: playerCache.keys().length, - basicPlayerCacheSize: basicPlayerCache.keys().length, + basicPlayerCacheSize: basicPlayerCache.size, profileCacheSize: profileCache.keys().length, profilesCacheSize: profilesCache.keys().length, profileNameCacheSize: profileNameCache.keys().length, -- cgit