不正确的 ehcache 统计信息:命中数 + 未命中数 == 0
2022-09-04 05:50:50
我有一个问题,其中出现返回无效的统计信息。net.sf.ehcache.CacheManager
我正在使用(最新版本)与ehcache-spring-annotations
。ehcache-core v2.3.2
问题是返回 1 个对象,而两者都返回 0。总数不应该是命中+未命中吗
?getMemoryStoreObjectCount
getCacheHits
getCacheMisses
下面的单元测试应该说明问题(它应用于空数据库):
@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 ...
}