我已经实现了缓存,现在我想添加一个到期时间。
如何使用@Cacheable
在春季启动时设置到期时间?
这是一段代码:
@Cacheable(value="forecast",unless="#result == null")
答案 0 :(得分:18)
我使用像这样的生活黑客
@Configuration
@EnableCaching
@EnableScheduling
public class CachingConfig {
public static final String GAMES = "GAMES";
@Bean
public CacheManager cacheManager() {
ConcurrentMapCacheManager cacheManager = new ConcurrentMapCacheManager(GAMES);
return cacheManager;
}
@CacheEvict(allEntries = true, value = {GAMES})
@Scheduled(fixedDelay = 10 * 60 * 1000 , initialDelay = 500)
public void reportCacheEvict() {
System.out.println("Flush Cache " + dateFormat.format(new Date()));
}
}
答案 1 :(得分:10)
直接通过缓存提供程序。缓存抽象是......好吧,抽象不是缓存实现。您正在使用的解决方案可能支持各种数据策略和其他解决方案所不具备的不同拓扑(例如JDK ConcurrentHashMap) - 暴露缓存抽象将无用,因为没有后备支持。在配置或通过其本机API时,应直接通过后备缓存控制此类功能。
答案 2 :(得分:7)
请注意,此答案使用ehcache,它是受支持的Spring Boot缓存管理器之一,可以说是最受欢迎的。
首先,您需要添加到pom.xml
:
<!-- Spring Framework Caching Support -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-cache</artifactId>
</dependency>
<dependency>
<groupId>net.sf.ehcache</groupId>
<artifactId>ehcache</artifactId>
</dependency>
在src/main/resources/ehcache.xml
:
<?xml version="1.0" encoding="UTF-8"?>
<ehcache>
<defaultCache eternal="true" maxElementsInMemory="100" overflowToDisk="false" />
<cache name="forecast"
maxElementsInMemory="1000"
timeToIdleSeconds="120"
timeToLiveSeconds="120"
overflowToDisk="false"
memoryStoreEvictionPolicy="LRU" />
</ehcache>
答案 3 :(得分:2)
您无法使用@cacheable表示法指定到期时间,因为@cacheable不提供任何此类可配置选项。
但是,提供spring缓存的不同缓存供应商已通过自己的配置提供了此功能。例如,NCache / TayzGrid允许您create different cache regions with configurable expiration time。
如果您已经实现了自己的缓存,则需要定义一种在缓存提供程序中指定过期的方法,并且还需要在解决方案中包含过期逻辑。
答案 4 :(得分:0)
我使用咖啡因缓存,此配置的有效期为60分钟:
spring.cache.cache-names=forecast
spring.cache.caffeine.spec=expireAfterWrite=60m
答案 5 :(得分:0)
您可以通过使用@Scheduled
注释来实现这种驱逐策略。可以使用fixedRate甚至cron表达式进行调度。
@Autowired
CacheManager cacheManager;
public void evictAllCaches() {
cacheManager.getCacheNames().stream()
.forEach(cacheName -> cacheManager.getCache(cacheName).clear());
}
@Scheduled(fixedRate = 6000)
public void evictAllcachesAtIntervals() {
evictAllCaches();
}
答案 6 :(得分:0)
如果您使用的是咖啡因,则可以在 application.properties
文件中添加以下行:
spring.cache.caffeine.spec=expireAfterAccess=300s