Skip to content

Commit

Permalink
feat: redis session 로컬 캐시 적용
Browse files Browse the repository at this point in the history
  • Loading branch information
Curry4182 committed Apr 15, 2024
1 parent ae84280 commit 679b403
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ public enum CacheType {

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

private final String cacheName;
private final int expireAfterWrite;
Expand Down

0 comments on commit 679b403

Please sign in to comment.