एक ही सेम के दूसरे तरीके से कैश्ड विधि को कॉल करने पर स्प्रिंग कैश काम नहीं कर रहा है। यहाँ मेरी समस्या को स्पष्ट तरीके से समझाने के लिए एक उदाहरण है। विन्यास: <cache:annotation-driven cache-manager="myCacheManager" /> <bean id="myCacheManager" class="org.springframework.cache.ehcache.EhCacheCacheManager"> <property name="cacheManager" ref="myCache" /> </bean> <!-- Ehcache library setup --> …
Ehache पर डॉक्स कहते हैं: 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 …