Perguntas com a marcação «ehcache»


8
Spring Cache @Cacheable - não funciona ao chamar de outro método do mesmo bean
O cache do Spring não está funcionando ao chamar o método em cache de outro método do mesmo bean. Aqui está um exemplo para explicar meu problema de forma clara. Configuração: <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
Como diferenciar entre tempo de vida e tempo de inatividade no ehcache
A documentação sobre ehache diz: 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 
Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.