Hi,
we are using Hibernate in Version 3.2.3.ga with ehcache as second level cache in version 1.2.4 and we see the following message in the log of our application:
WARN [hibernate.cache.ReadWriteCache: 214] An item was expired by the cache while it was locked (increase your cache timeout): user.dto.SessionDto#144594 (RMI TCP Connection(2048)-10.10.10.10)
And this is logged endlessly...
Any idea what might causing this? Google isn't of much help here.
The ehcache.xml is quite simple and looks like this:
<ehcache>
<defaultCache maxElementsInMemory="50000" eternal="false" timeToIdleSeconds="300" timeToLiveSeconds="600" overflowToDisk="false"/>
</ehcache>
I already increased the values mentioned there without any or only little effect.
Kind regards,
Ingo
|