不正确的 ehcache 统计信息:命中数 + 未命中数 == 0

2022-09-04 05:50:50

我有一个问题,其中出现返回无效的统计信息。net.sf.ehcache.CacheManager

我正在使用(最新版本)与ehcache-spring-annotationsehcache-core v2.3.2

问题是返回 1 个对象,而两者都返回 0。总数不应该是命中+未命中吗getMemoryStoreObjectCountgetCacheHitsgetCacheMisses

下面的单元测试应该说明问题(它应用于数据库):

@Test
public void testCache() {
    Entity e = ..
    dao.storeEntity(e);
    dao.getEntity(e);
    assertEquals(1, cache.getStatistics().getMemoryStoreObjectCount()); // ok
    assertEquals(0, cache.getStatistics().getCacheHits()); // ok
    assertEquals(1, cache.getStatistics().getCacheMisses()); // fails due to 0

}

为了完整性,我包括所有基本配置:

弹簧配置

<ehcache:annotation-driven cache-manager="ehCacheManager" />
<bean id="ehCacheManager" class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean">
    <property name="configLocation" value="classpath:ehcache.xml"/>
</bean>

ehcache.xml

<ehcache>
     <defaultCache eternal="false" maxElementsInMemory="1000"
        overflowToDisk="false" diskPersistent="false" timeToIdleSeconds="0"
        timeToLiveSeconds="600" memoryStoreEvictionPolicy="LRU"/>
</ehcache>

@Cacheable(keyGenerator=@KeyGenerator(name="StringCacheKeyGenerator"))
public Entity getEntity(Serializable key) {
    return // sql ... 
}

答案 1

statistics=“true” 添加到 ehcache.xml,通常最好将配置更改保留在代码之外。

<ehcache>
     <defaultCache ... statistics="true" />
...
</ehcache>

答案 2

通过在 中设置以下属性找到了问题的解决方案:net.sf.ehcache.hibernate.EhCache

  cache.setStatisticsEnabled(true);
  cache.setStatisticsAccuracy(Statistics.STATISTICS_ACCURACY_GUARANTEED);

推荐