Skip to content

Commit

Permalink
feat: 캐시 저장시간 30초로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
Curry4182 committed Apr 17, 2024
1 parent 1e23f19 commit bb83f54
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
public enum CacheType {

REFRESH_TOKEN("refreshToken", 1209600, 10000),
CHAT_CACHE("chat", 24 * 3600, 500000),
MEMBER_CACHE("member", 60, 10000),
CHAT_CACHE("chat", 30, 500000),
MEMBER_CACHE("member", 30, 10000),
SESSION_CACHE("sessionCache", 60, 10000);

private final String cacheName;
Expand Down

0 comments on commit bb83f54

Please sign in to comment.