I configured caches for classes in the ehcache.xml file successful. (E.g. for class xxx.yyy.zzz.class1 I configured
Code:
<cache name="xxx.yyy.zzz.class1"
maxElementsInMemory="10000"
eternal="true"
overflowToDisk="true"/>
Now I want to configure a cache for a set TestSet of class1, too. I tried
Code:
<cache name="xxx.yyy.zzz.class1.TestSet"
maxElementsInMemory="10000"
eternal="true"
overflowToDisk="true"/>
but I got the warning
Quote:
Could not find configuration for xxx.yyy.zzz.class1.TestSet. Configuring using the defaultCache settings.
How can I configure the cache for the set? Thanks in advance.
P.S.: I'm using the latest version of ehcache.jar and hibernate 2.1RC1