From da35e0f6230e90675da5ba69a2b61475097928d2 Mon Sep 17 00:00:00 2001 From: kyuuseiryuu Date: Tue, 3 Mar 2026 17:50:42 +0900 Subject: [PATCH] feat(uidScoreStore): increase redis timeout for uid-score keys from 3h to 24h --- src/services/uidScoreStore.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/uidScoreStore.ts b/src/services/uidScoreStore.ts index d33e03d..486267d 100644 --- a/src/services/uidScoreStore.ts +++ b/src/services/uidScoreStore.ts @@ -2,7 +2,7 @@ import { redis, xcxApi } from '../utils/server'; const getKey = (uid: string) => `my-kaiqiuwang:uid-score:${uid}`; -const TIMEOUT = 60 * 60 * 3; // 3H; +const TIMEOUT = 60 * 60 * 24; // 24h; export const getUidScore = async (uids: string[]): Promise> => { const jobs = uids.map(async uid => {