From c13a7085841f87b2fee154c91d173304588737a5 Mon Sep 17 00:00:00 2001 From: sent Date: Thu, 5 Jun 2025 21:12:21 -0700 Subject: [PATCH] Update others/scaler.mjs --- others/scaler.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/others/scaler.mjs b/others/scaler.mjs index 15ac37c9..36f867d7 100644 --- a/others/scaler.mjs +++ b/others/scaler.mjs @@ -6,7 +6,7 @@ let cache = makeCache(maxKeys); function makeCache(maxEntries) { return new LRUCache({ maxSize: maxEntries, - ttl: 4 * 24 * 60 * 60 * 1_000, + ttl: 60_000, allowStale: false, updateAgeOnGet: false, updateAgeOnHas: false,