From c69eab962170b9ba4f7b134982f322caaf7e9c81 Mon Sep 17 00:00:00 2001 From: tianfeng <769204422@qq.com> Date: Tue, 11 Nov 2025 12:19:29 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AF=86=E7=A0=81=E9=94=99=E8=AF=AF=E6=AC=A1?= =?UTF-8?q?=E6=95=B0=E8=B0=83=E6=95=B4=E4=B8=BA5=E5=88=86=E9=92=9F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../service/user/impl/UserAccountAuthCacheServiceImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rc-service/rc-service-other/other-infrastructure/src/main/java/com/red/circle/other/infra/database/cache/service/user/impl/UserAccountAuthCacheServiceImpl.java b/rc-service/rc-service-other/other-infrastructure/src/main/java/com/red/circle/other/infra/database/cache/service/user/impl/UserAccountAuthCacheServiceImpl.java index d1c4eb67..2b010b1e 100644 --- a/rc-service/rc-service-other/other-infrastructure/src/main/java/com/red/circle/other/infra/database/cache/service/user/impl/UserAccountAuthCacheServiceImpl.java +++ b/rc-service/rc-service-other/other-infrastructure/src/main/java/com/red/circle/other/infra/database/cache/service/user/impl/UserAccountAuthCacheServiceImpl.java @@ -29,7 +29,7 @@ public class UserAccountAuthCacheServiceImpl implements UserAccountAuthCacheServ } String key = "ACCOUNT_LOGIN_TIME" + ZonedDateTimeAsiaRiyadhUtils.nowDateToInt() + "_" + userId; - redisService.increment(key, 1l, 3, TimeUnit.DAYS); + redisService.increment(key, 1l, 5, TimeUnit.MINUTES); } @Override