spring cache 有时效性么
2个回答
2015-08-29 · 知道合伙人软件行家
关注
展开全部
Spring Cache是要看你使用的实现,具体在SpringContext中是cacheManager Bean。默认内置3种实现,EHCache,Redis,ConcurrentHashMap。使用Spring对于EHCache可以使用一楼的配置,可以有实效的。
使用Redis在缓存的时候也可以使用实效的,但是Spring Cache没有提供便利的API,因此还无法利用Redis的默认缓存时限,需要自己更改Sprng context源码
ConcurrentHashMap实现的更无法使用时效限制。
三种配置如下:
EHCache:
<cache:annotation-driven />
<!-- EhCache library setup -->
<bean id="ehcache" class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean"
p:config-location="classpath:ehcache.xml"
p:shared="true"/>
<bean id="cacheManager"
class="org.springframework.cache.ehcache.EhCacheCacheManager"
p:cache-manager-ref="ehcache"/>
Redis:
<bean id="cacheManager" class="org.springframework.data.redis.cache.RedisCacheManager">
<constructor-arg index="0" ref="redisTemplate" />
</bean>
Java ConcurrentHashMap:
<bean id="cacheManager"
class="org.springframework.cache.concurrent.ConcurrentMapCacheManager">
</bean>
使用Redis在缓存的时候也可以使用实效的,但是Spring Cache没有提供便利的API,因此还无法利用Redis的默认缓存时限,需要自己更改Sprng context源码
ConcurrentHashMap实现的更无法使用时效限制。
三种配置如下:
EHCache:
<cache:annotation-driven />
<!-- EhCache library setup -->
<bean id="ehcache" class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean"
p:config-location="classpath:ehcache.xml"
p:shared="true"/>
<bean id="cacheManager"
class="org.springframework.cache.ehcache.EhCacheCacheManager"
p:cache-manager-ref="ehcache"/>
Redis:
<bean id="cacheManager" class="org.springframework.data.redis.cache.RedisCacheManager">
<constructor-arg index="0" ref="redisTemplate" />
</bean>
Java ConcurrentHashMap:
<bean id="cacheManager"
class="org.springframework.cache.concurrent.ConcurrentMapCacheManager">
</bean>
Storm代理
2023-08-29 广告
2023-08-29 广告
"StormProxies是全球大数据IP资源服务商,其住宅代理网络由真实的家庭住宅IP组成,可为企业或个人提供满足各种场景的代理产品。点击免费测试(注册即送1G流量)StormProxies有哪些优势?1、IP+端口提取形式,不限带宽,I...
点击进入详情页
本回答由Storm代理提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询