You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ocr/runstart/target/classes/myehcache.xml

22 lines
688 B

<ehcache name="test">
<diskStore path="java.io.tmpdir"/>
<!--<cacheManagerEventListenerFactory-->
<!--class="com.xiaoyao.commons.cache.ehcache.listener.MyCacheManagerEventListenerFactory"/>-->
<defaultCache
maxEntriesLocalHeap="1000"
eternal="false"
timeToIdleSeconds="300"
timeToLiveSeconds="600"
overflowToDisk="true"
memoryStoreEvictionPolicy="LRU">
</defaultCache>
<cache name="myCache"
maxEntriesLocalHeap="200"
eternal="false"
timeToIdleSeconds="300"
timeToLiveSeconds="600"
overflowToDisk="true">
</cache>
</ehcache>