shorten cache expire

This commit is contained in:
Namekuji 2023-06-18 18:04:26 -04:00
parent f03861a189
commit f28c5f8116

View file

@ -118,8 +118,8 @@ async function fetchAny(
if (await updateQuestion(note.uri)) { if (await updateQuestion(note.uri)) {
local.object.poll = await populatePoll(note, me?.id ?? null); local.object.poll = await populatePoll(note, me?.id ?? null);
} }
// Allow refetching the poll after 2 minutes // Allow fetching the poll again after 1 minute
await redisClient.set(key, 1, "EX", 60 * 2); await redisClient.set(key, 1, "EX", 60);
} }
} }
return local; return local;