Domande taggate «ehcache»


8
Spring Cache @Cacheable - non funziona durante la chiamata da un altro metodo dello stesso bean
Spring cache non funziona quando si chiama un metodo memorizzato nella cache da un altro metodo dello stesso bean. Ecco un esempio per spiegare in modo chiaro il mio problema. Configurazione: <cache:annotation-driven cache-manager="myCacheManager" /> <bean id="myCacheManager" class="org.springframework.cache.ehcache.EhCacheCacheManager"> <property name="cacheManager" ref="myCache" /> </bean> <!-- Ehcache library setup --> <bean id="myCache" class="org.springframework.cache.ehcache.EhCacheManagerFactoryBean" …
107 java  spring  caching  ehcache 

3
Come distinguere tra tempo di vita e tempo di inattività in ehcache
La documentazione su Ehache dice: timeToIdleSeconds: Sets the time to idle for an element before it expires. i.e. The maximum amount of time between accesses before an element expires timeToLiveSeconds: Sets the time to live for an element before it expires. i.e. The maximum time between creation time and when …
103 java  ehcache 
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.