blob: 12bd50ba56a54f55c8f45bf5568848d05cb79e10 [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" />
margaretha8b682212023-06-12 11:04:18 +020033 </cache> -->
Michael Hanl72c7b832015-09-03 08:42:15 +020034</ehcache>