blob: b29353463e88304f7c62b58639aab78a8d23813e [file] [log] [blame]
margarethafe252802018-07-30 14:59:50 +02001<ehcache xsi:noNamespaceSchemaLocation="http://www.ehcache.org/ehcache.xsd"
margaretha8efa3752018-07-24 17:46:43 +02002 updateCheck="true" monitoring="autodetect" dynamicConfig="true">
3
4 <diskStore path="./krill_cache" />
5
6 <defaultCache
7 maxEntriesLocalHeap="0"
8 eternal="false"
9 timeToIdleSeconds="1200"
10 timeToLiveSeconds="1200">
11 </defaultCache>
12
margarethafe252802018-07-30 14:59:50 +020013 <cache name="named_vc"
14 eternal="true"
margarethadf0e9d12018-07-30 16:22:59 +020015 memoryStoreEvictionPolicy="LRU"
16 maxElementsInMemory="1"
17 maxBytesLocalDisk="1G"
18 diskExpiryThreadIntervalSeconds = "120" >
19 <persistence strategy="localTempSwap"/>
margarethafe252802018-07-30 14:59:50 +020020 </cache>
margaretha8efa3752018-07-24 17:46:43 +020021
22</ehcache>