blob: 22f2f5585b948a719cc35f40e8d14296894fddbe [file] [log] [blame]
margaretha1b320452018-08-02 16:56:25 +02001<ehcache xsi:noNamespaceSchemaLocation="http://www.ehcache.org/ehcache.xsd"
2 updateCheck="true" monitoring="autodetect" dynamicConfig="true">
3
Michael Hanl72c7b832015-09-03 08:42:15 +02004 <defaultCache eternal='true' overflowToDisk='false'/>
5 <!--maxBytesLocalHeap="200M"-->
Michael Hanlf1e85e72016-01-21 16:55:45 +01006 <diskStore path="./cache_store"/>
margaretha064eb6f2018-07-10 18:33:01 +02007
margaretha064eb6f2018-07-10 18:33:01 +02008
9 <!-- EM -->
10 <cache name='authorization'
11 timeToLiveSeconds="1000"
12 eternal='false'
13 memoryStoreEvictionPolicy="LRU"
14 maxEntriesLocalHeap="100"
15 overflowToDisk='false'/>
16
17 <cache name='access_token'
18 timeToIdleSeconds="3600"
19 timeToLiveSeconds="15000"
20 eternal='false'
21 memoryStoreEvictionPolicy="LRU"
22 maxEntriesLocalHeap="500"
margaretha1b320452018-08-02 16:56:25 +020023 overflowToDisk='false'/>
24
margaretha8b682212023-06-12 11:04:18 +020025 <!-- <cache name="named_vc"
margaretha1b320452018-08-02 16:56:25 +020026 eternal="true"
27 memoryStoreEvictionPolicy="LRU"
28 maxBytesLocalHeap="256M"
margaretha6f6911e2021-07-22 17:47:54 +020029 maxBytesLocalDisk="2G"
margaretha1b320452018-08-02 16:56:25 +020030 diskExpiryThreadIntervalSeconds = "120" >
31 <persistence strategy="localTempSwap"/>
margarethae1228ab2021-02-22 11:51:38 +010032 <sizeOfPolicy maxDepth="3000" maxDepthExceededBehavior="abort" />
margaretha5a5b9952023-06-12 12:46:36 +020033 -->
34
35 <cache name="total_results"
36 timeToIdleSeconds="3600"
37 timeToLiveSeconds="15000"
38 eternal='false'
39 memoryStoreEvictionPolicy="LRU"
40 overflowToDisk='false'
41 maxEntriesLocalHeap="500"
42 />
Michael Hanl72c7b832015-09-03 08:42:15 +020043</ehcache>