123456789101112131415161718192021222324252627282930313233 |
- <?xml version="1.0" encoding="UTF-8"?>
- <ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:noNamespaceSchemaLocation="ehcache.xsd" updateCheck="false"
- monitoring="autodetect" dynamicConfig="true">
- <diskStore path="java.io.tmpdir" />
- <defaultCache
- maxElementsInMemory="10000"
- eternal="false"
- timeToIdleSeconds="1800"
- timeToLiveSeconds="1800"
- maxElementsOnDisk="10000000"
- diskExpiryThreadIntervalSeconds="120"
- memoryStoreEvictionPolicy="LRU" >
- <terracotta clustered="false" />
- </defaultCache>
- <cache name="MINI_USER_CACHE"
- maxElementsInMemory="5000"
- eternal="false"
- timeToIdleSeconds="1200"
- timeToLiveSeconds="1200"
- maxElementsOnDisk="1000000"
- diskExpiryThreadIntervalSeconds="120"
- memoryStoreEvictionPolicy="LRU"
- overflowToDisk="false">
- <terracotta clustered="false" />
- </cache>
- </ehcache>
|