blob: be4e71e72e98c977f44b0b3822a692075e0e7df1 [file] [log] [blame]
Michael Hanl72c7b832015-09-03 08:42:15 +02001<ehcache xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
margarethabcda2f72017-04-27 10:17:58 +02002 xsi:schemaLocation='http://ehcache.org/ehcache.xsd'>
Michael Hanl72c7b832015-09-03 08:42:15 +02003 <defaultCache eternal='true' overflowToDisk='false'/>
4 <!--maxBytesLocalHeap="200M"-->
Michael Hanlf1e85e72016-01-21 16:55:45 +01005 <diskStore path="./cache_store"/>
margaretha064eb6f2018-07-10 18:33:01 +02006
Michael Hanl72c7b832015-09-03 08:42:15 +02007 <cache name='id_tokens'
Michael Hanlf1e85e72016-01-21 16:55:45 +01008 eternal='true'
9 maxElementsOnDisk="10000000"
Michael Hanl72c7b832015-09-03 08:42:15 +020010 memoryStoreEvictionPolicy="LRU"
11 maxEntriesLocalHeap="50"
Michael Hanlf1e85e72016-01-21 16:55:45 +010012 overflowToDisk='true'/>
Michael Hanl7368aa42016-02-05 18:15:47 +010013
Michael Hanl72c7b832015-09-03 08:42:15 +020014 <cache name='auth_codes'
15 timeToIdleSeconds="600"
16 eternal='false'
17 memoryStoreEvictionPolicy="LRU"
18 maxEntriesLocalHeap="100"
19 overflowToDisk='false'/>
Michael Hanlc0ed00f2016-06-23 14:33:10 +020020
Michael Hanl72c7b832015-09-03 08:42:15 +020021 <cache name='resources'
22 eternal='false'
23 overflowToDisk='false'
24 maxEntriesLocalHeap="60"
25 timeToIdleSeconds="172800"
26 diskSpoolBufferSizeMB="30"
27 diskExpiryThreadIntervalSeconds="120"
28 memoryStoreEvictionPolicy="LRU"
29 statistics="false"/>
margaretha064eb6f2018-07-10 18:33:01 +020030
31
32 <!-- EM -->
33 <cache name='authorization'
34 timeToLiveSeconds="1000"
35 eternal='false'
36 memoryStoreEvictionPolicy="LRU"
37 maxEntriesLocalHeap="100"
38 overflowToDisk='false'/>
39
40 <cache name='access_token'
41 timeToIdleSeconds="3600"
42 timeToLiveSeconds="15000"
43 eternal='false'
44 memoryStoreEvictionPolicy="LRU"
45 maxEntriesLocalHeap="500"
46 overflowToDisk='false'/>
Michael Hanl72c7b832015-09-03 08:42:15 +020047</ehcache>