У меня проблема, когда появляется net.sf.ehcache.CacheManager
возвращает неверную статистику.
Я использую ehcache-core v2.3.2
(последняя версия) с ehcache-spring-annotations
.
Проблема в том, что getMemoryStoreObjectCount
возвращает 1 объект, в то время как оба getCacheHits
и getCacheMisses
возвращают 0 .Разве общее число не должно составлять hits + misses
?
Приведенный ниже модульный тест должен проиллюстрировать проблему (он применяется к пустой базе данных):
@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
}
Для полноты картины я включаю все необходимые конфигурации:
Spring config
<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>
dao
@Cacheable(keyGenerator=@KeyGenerator(name="StringCacheKeyGenerator"))
public Entity getEntity(Serializable key) {
return // sql ...
}