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 => {