在我的 spring boot(1.2.6) 应用程序中,我需要针对不同对象的不同过期策略。缓存后端是redis。
归档它的最佳做法是什么?
在我的 spring boot(1.2.6) 应用程序中,我需要针对不同对象的不同过期策略。缓存后端是redis。
归档它的最佳做法是什么?
我证明了,目前它现在可以工作了。
最初我创建了具有不同过期时间的不同缓存,但是它不起作用。看起来spring redis缓存不使用缓存实例中指定的过期时间。
不工作
@Bean
public Cache cacheObjectName(StringRedisTemplate template) {
return new RedisCache(CACHE_OBJNAME, CACHE_OBJNAME.getBytes(), template, 10 * 24 * 60 * 60);
}
最后我不得不创建具有不同过期时间的不同缓存管理器,
工作实施
@Bean(name = MANAGER_NAME_1D)
public CacheManager cacheManager1D(StringRedisTemplate redisTemplate) throws Exception {
final RedisCacheManager redisCacheManager = new RedisCacheManager(redisTemplate(factory), Arrays.asList(CACHE_A, CACHE_B));
redisCacheManager.setUsePrefix(true);
redisCacheManager.setDefaultExpiration(60 * 60 * 24);
return redisCacheManager;
}