일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 아이온큐
- Cache
- Docker
- file download
- mysql
- ann
- Elasticsearch
- elasticsearch cache
- Aggregation
- KNN
- dbeaver
- 양자컴퓨터
- aggs
- java
- Selenium
- 테슬라
- vavr
- java crawler
- Analyzer
- API
- TSLA
- IONQ
- JPA
- api cache
- redis
- NORI
- Query
- Elastic
- aqqle
- request cache
Archives
- Today
- Total
아빠는 개발자
[java] Redis @Cacheable condition, unless 본문
728x90
반응형
Spring의 @Cacheable 애노테이션을 사용할 때 특정 조건에 따라 캐싱을 제어할 수 있음
condition 및 unless 속성을 사용할 수 있는데 이 속성들은 SpEL(Spring Expression Language)을 사용하여 조건을 지정한다.
- condition 속성은 캐시가 적용될지 여부를 결정하는 조건을 지정합니다.
- unless 속성은 condition 속성과 반대로 캐싱된 결과가 캐시에 저장되지 않도록 조건을 지정합니다.
특정 매개변수 값과 반환 값을 조합하여 캐시 조건을 설정할 수 있음
@Cacheable(value = "myCache", condition = "#param.length() > 3", unless = "#result.startsWith('No')")
728x90
반응형
'Redis' 카테고리의 다른 글
[Redis] Count 와 Hash (INCR,DECR, HSET, HGET) (0) | 2024.06.29 |
---|---|
IntelliJ IDEA redis 연결 (0) | 2024.06.03 |
[Redis] Redis Queue 설계하기 (0) | 2024.05.17 |
[Redis] Redis cache 설계 - 이론편 (0) | 2024.05.17 |
[Redis] 만료 시간 설정하기 Expire time (redis-cli) (0) | 2024.05.17 |