This week's book giveaway is in the Agile and other Processes forum.
We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line!
See this thread for details.
The moose likes EhCache and the fly likes EHCache problems Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Caching » EhCache
Reply Bookmark "EHCache problems" Watch "EHCache problems" New topic
Author

EHCache problems

David Cuesta
Greenhorn

Joined: Nov 07, 2001
Posts: 25
Hi everybody,

I've an application installed in production that uses EHCache as cache manager and is working fine, but sometimes the cache is down and shows a message about that the cache is invalidated, any idea about or similar behaviour?

Thanks in advance,

Best regards,
soundar rajan
Greenhorn

Joined: May 08, 2013
Posts: 2
you can solve this by setting a time to live to 5 minutes

<cache name="SimplePageCachingFilter"
maxElementsInMemory="100"
eternal="false"
timeToIdleSeconds="300"
timeToLiveSeconds="300"
overflowToDisk="true" />
 
I agree. Here's the link: http://aspose.com/file-tools
 
subject: EHCache problems
 
Similar Threads
Ehcache ...
JPA Caching for Performance
Problem with read-write cache
clustering web servers
Caching EJB stored procedure calls.