I am using hibernate 3. 1 running on Solaris.
Some events are failed to be inserted to the db.
The exception is:
org.hibernate.cache.CacheException: net.sf.ehcache.CacheException:
Code:
hibernate.test.com.mercado.s2002.analysis.objects.CriterionCache: Could not remove disk store entry for com.mercado.s2002.analysis.objects.Criterion#1543646397. Error was hibernate.test.com.mercado.s2002.analysis.objects.Criterion Cache: The Disk store is not active.
My ehcache.xml file look like this:
Code:
<ehcache>
<defaultCache
maxElementsInMemory="10000"
eternal="false"
timeToIdleSeconds="3600"
timeToLiveSeconds="36000"
overflowToDisk="false"
/>
<cache name="com.mercado.s2002.analysis.objects.CriteriaDictionary"
maxElementsInMemory="10000"
/>
<cache name="com.mercado.s2002.analysis.objects.Criterion"
maxElementsInMemory="10000"
/>
</ehcache>