error « ehcache « Java Enterprise Q&A





1. EHCache error on looking up by cache key    stackoverflow.com

I am using EHCache 1.5.0 on a webapp running on WebLogic 9.1 instance and once in a while I run into the following error while getting an element from cache or ...

2. error while loading EhCache configuration    coderanch.com

hi, i want to configure the ehcache. but i m gettin error when i m loading catch: code is like InputStream fis=new FileInputStream(new File("C:\\Documents and Settings\\pravin_karne\\pravin_karne_view\\StartosHear\\src\\BILiveProCog\\pcs\\ehcache1.xml")) CacheManager manager=new CacheManager(fis); Cache cache=manager.getCache("sampleCache1"); //error is cache is null; response on explore is like java.lang.NoClassDefFoundError: edu/emory/mathcs/backport/java/util/concurrent/Executors net.sf.ehcache.distribution.MulticastKeepaliveHeartbeatReceiver.init(MulticastKeepaliveHeartbeatReceiver.java:81) net.sf.ehcache.distribution.MulticastRMICacheManagerPeerProvider.init(MulticastRMICacheManagerPeerProvider.java:89) net.sf.ehcache.CacheManager.init(CacheManager.java:221) why this cache is null....i didnt get thnx in advance [ August 07, 2007: Message ...

3. EhCache error    forums.oracle.com

In summary, and as far as I can remember, EhCache puts serializable elements with key+value into the cache MemoryStore. When the MemoryStore gets full, the old entries are moved to DiskStore, i.e. stored on disk. The error you're getting suggests that some old entries stored in disk were tampered with, partially deleted, or maybe simply that you're running out of space ...