blob: d6a97e472eb76b610bc4916ac0703addcfa87acb [file] [log] [blame]
margaretha35e1ca22023-11-16 22:00:01 +01001<ehcache
2 xsi:noNamespaceSchemaLocation="http://www.ehcache.org/ehcache.xsd"
margaretha1b320452018-08-02 16:56:25 +02003 updateCheck="true" monitoring="autodetect" dynamicConfig="true">
margaretha35e1ca22023-11-16 22:00:01 +01004
5 <defaultCache eternal='true' overflowToDisk='false' />
6 <!--maxBytesLocalHeap="200M" -->
margaretha94b46fe2024-04-16 11:15:00 +02007 <diskStore path="./data/cache_store" />
margaretha35e1ca22023-11-16 22:00:01 +01008
9
10 <!-- EM -->
11 <cache name='authorization' timeToLiveSeconds="1000"
12 eternal='false' memoryStoreEvictionPolicy="LRU"
13 maxEntriesLocalHeap="100" overflowToDisk='false' />
14
15 <cache name='access_token' timeToIdleSeconds="3600"
16 timeToLiveSeconds="15000" eternal='false'
17 memoryStoreEvictionPolicy="LRU" maxEntriesLocalHeap="500"
18 overflowToDisk='false' />
19
20 <!-- <cache name="named_vc" eternal="true" memoryStoreEvictionPolicy="LRU"
21 maxBytesLocalHeap="256M" maxBytesLocalDisk="2G" diskExpiryThreadIntervalSeconds
22 = "120" > <persistence strategy="localTempSwap"/> <sizeOfPolicy maxDepth="3000"
23 maxDepthExceededBehavior="abort" /> -->
24
25 <cache name="total_results" timeToIdleSeconds="3600"
26 timeToLiveSeconds="15000" eternal='false'
27 memoryStoreEvictionPolicy="LRU" overflowToDisk='false'
28 maxEntriesLocalHeap="500" />
Michael Hanl72c7b832015-09-03 08:42:15 +020029</ehcache>