reduced cache ttl to 3 hours for lite cache layer

This commit is contained in:
hatskier
2022-05-09 09:31:25 +02:00
parent b4b3b668b9
commit 401f717704

View File

@@ -1,4 +1,4 @@
const cacheTTLMilliseconds = 7 * 24 * 3600 * 1000; // 7 days
const cacheTTLMilliseconds = 3 * 3600 * 1000; // 3 hours
const enableLiteMode = !!getEnv("LIGHT_MODE", false);
const dbUrls = {
local: "mongodb://localhost:27017/redstone",