Skip to content

Commit

Permalink
fix: 댓글 캐시 데이터 TTL 1분->60분으로 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
pandahwang committed Oct 23, 2024
1 parent 0b92538 commit f912515
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public CacheManager commentCacheManager(RedisConnectionFactory redisConnectionFa
)
)
// 데이터의 만료기간(TTL) 설정
.entryTtl(Duration.ofMinutes(1L));
.entryTtl(Duration.ofMinutes(60L));

return RedisCacheManager
.RedisCacheManagerBuilder
Expand Down

0 comments on commit f912515

Please sign in to comment.