티스토리 뷰
728x90
implementation 'org.springframework.boot:spring-boot-starter-cache'
implementation 'com.github.ben-manes.caffeine:caffeine'
@EnableCaching
@Configuration
public class CacheConfig {
@Bean
public CacheManager cacheManager() {
SimpleCacheManager cacheManager = new SimpleCacheManager();
List<CaffeineCache> caches = Arrays.stream(CacheType.values())
.map(cache -> new CaffeineCache(
cache.getKey(),
Caffeine.newBuilder()
.expireAfterWrite(cache.getExpireAfterWrite(), TimeUnit.SECONDS)
.maximumSize(cache.getMaximumSize())
.recordStats()
.build()
))
.collect(Collectors.toList());
cacheManager.setCaches(caches);
return cacheManager;
}
}
@Getter
public enum CacheType {
ASDF(ConstConfig.ASDF),
QWER(ConstConfig.QWER, 1),
;
private String key;
private int expireAfterWrite;
private int maximumSize;
CacheType(String key) {
this(key, ConstConfig.DEFAULT_TTL_SEC);
}
CacheType(String key, int expireAfterWrite) {
this.key = key;
this.expireAfterWrite = expireAfterWrite;
this.maximumSize = ConstConfig.DEFAULT_MAX_SIZE;
}
public static class ConstConfig {
public static final String ASDF = "asdf";
public static final String QWER = "qwer";
static final int DEFAULT_TTL_SEC = 30;
static final int DEFAULT_MAX_SIZE = 10000;
}
}
728x90
'공부' 카테고리의 다른 글
[rdbms] transaction (0) | 2023.09.10 |
---|---|
[mysql] 복합 index 인 경우, 카디널리티 높은 -> 낮은 (중복적은 -> 중복많은) (0) | 2023.09.10 |
[sh] scp (0) | 2023.09.10 |
[spring] Scheduler in multi node environment (shedlock) (0) | 2023.09.10 |
[sh] count in directory (0) | 2023.09.10 |
댓글
250x250
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- 할인
- 클루지
- 김달
- 테슬라 레퍼럴
- 연애학개론
- 팔로워 수 세기
- 유투브
- 테슬라 레퍼럴 적용 확인
- 테슬라 레퍼럴 코드 확인
- wlw
- 레퍼럴
- 개리마커스
- 테슬라 리퍼럴 코드
- 어떻게 능력을 보여줄 것인가?
- 인스타그램
- 테슬라 크레딧 사용
- 책그림
- Bot
- follower
- 모델y
- 테슬라
- 모델 Y 레퍼럴
- 테슬라 추천
- Kluge
- 테슬라 리퍼럴 코드 혜택
- 메디파크 내과 전문의 의학박사 김영수
- COUNT
- 테슬라 리퍼럴 코드 생성
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
글 보관함