Spring注释驱动的ehcache注释使用timeToLiveSeconds进行驱逐

时间:2014-01-20 03:23:09

标签: spring spring-mvc ehcache

很抱歉提前发帖,但我希望在帖子中准确无误。

我有一个spring mvc 3.1 web应用程序,刚刚在我的web应用程序中构建了ehcache,我用它来缓存从数据库构建的所有值列表(下拉列表)。

以下是我的设置示例...

    <!-- Cache -->
    <dependency>
        <groupId>net.sf.ehcache</groupId>
        <artifactId>ehcache-core</artifactId>
        <version>2.5.0</version>
    </dependency>

...

<ehcache>
    <diskStore path="java.io.tmpdir"/>      
    <cache
        name="lovStore"
        maxElementsInMemory="512"
        eternal="false"
        timeToIdleSeconds="60"
        timeToLiveSeconds="60"
        overflowToDisk="false"
        memoryStoreEvictionPolicy="LRU"/>                       
</ehcache>

...

<cache:annotation-driven />
    <bean id="cacheManager" 
        class="org.springframework.cache.ehcache.EhCacheCacheManager" 
        p:cache-manager-ref="ehcache"/>
    <bean id="ehcache" 
        class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean" 
        p:config-location="classpath:ehcache.xml"/>

...

@Cacheable(value = "lovStore", key = "#code")
public Map<String, String> getLov(String code) throws ReportingManagerException {
    return MockLOVHelper.getInstance().getLov(code);
}   

网络上的很多教程都谈到了使用@cacheEvict方法驱逐缓存,但这并不适合我。我认为我更适合使用timeToLiveSeconds选项来驱逐缓存。

当我查看日志时,缓存肯定正在运行,但是缓存的驱逐不是。我在网上读过一些关于timeToLiveSeconds如何不能真正驱逐缓存的其他文章,但是其他类似文章http://code.google.com/p/ehcache-spring-annotations/wiki/EvictExpiredElements表示你必须创建特殊设置才能让缓存逐出。

有人可以帮助我理解我的缓存是否应该驱逐,以及我如何驱逐,因为文章中提到的不是我能够理解如何实现的东西。

以下是我的日志的样子。但是没有驱逐的迹象......

2014-01-20 13:32:41,791 DEBUG [AnnotationCacheOperationSource] - Adding cacheable method 'getLov' with attribute: [CacheableOperation[public java.util.Map com.myer.reporting.dao.mock.MockLovStoreDaoImpl.getLov(java.lang.String) throws com.myer.reporting.exception.ReportingManagerException] caches=[lovStore] | condition='' | key='#code']

感谢

1 个答案:

答案 0 :(得分:1)

在需要这样做之前,Ecache不会逐出元素。这是合理的,因为没有必要浪费CPU资源进行操作(驱逐元素),这些资源没有多大区别。
如果有人试图从缓存中获取元素并且元素的生存/空闲时间将过期,那么ehcache将逐出该元素并返回null。如果达到缓存/池的最大元素或内存,则ehcache将根据驱逐策略驱逐已过期的元素。
如果我理解正确的话,并不能保证所有过期的元素都会被驱逐,因为只选择样本元素来驱逐(来自documentation):

  

@param sampledElements这应该是人口的随机子集