Pytania otagowane jako ehcache


8
Spring Cache @Cacheable - nie działa podczas wywoływania z innej metody tego samego beana
Spring cache nie działa podczas wywoływania metody buforowanej z innej metody tego samego beana. Oto przykład, który wyjaśnia mój problem w jasny sposób. Konfiguracja: <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" p:shared="true"> <property name="configLocation" value="classpath:ehcache.xml"></property> </bean> <cache name="employeeData" …
108 java  spring  caching  ehcache 

3
Jak odróżnić czas życia od czasu bezczynności w ehcache
Dokumentacja na ehache mówi: 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 an …
103 java  ehcache 
Korzystając z naszej strony potwierdzasz, że przeczytałeś(-aś) i rozumiesz nasze zasady używania plików cookie i zasady ochrony prywatności.
Licensed under cc by-sa 3.0 with attribution required.