Update index.mjs

This commit is contained in:
sent 2025-06-05 21:12:54 -07:00
parent c13a708584
commit ff50de3064

View File

@ -57,7 +57,7 @@ import "./others/warmup.mjs";
const cache = new LRUCache({
maxSize: 1000,
ttl: 60000,
ttl: 60_000,
allowStale: false,
sizeCalculation: (value, key) => Buffer.byteLength(value) + Buffer.byteLength(key)
});