margaretha | 35e1ca2 | 2023-11-16 22:00:01 +0100 | [diff] [blame] | 1 | <ehcache |
| 2 | xsi:noNamespaceSchemaLocation="http://www.ehcache.org/ehcache.xsd" |
margaretha | 1b32045 | 2018-08-02 16:56:25 +0200 | [diff] [blame] | 3 | updateCheck="true" monitoring="autodetect" dynamicConfig="true"> |
margaretha | 35e1ca2 | 2023-11-16 22:00:01 +0100 | [diff] [blame] | 4 | |
| 5 | <defaultCache eternal='true' overflowToDisk='false' /> |
| 6 | <!--maxBytesLocalHeap="200M" --> |
margaretha | 94b46fe | 2024-04-16 11:15:00 +0200 | [diff] [blame] | 7 | <diskStore path="./data/cache_store" /> |
margaretha | 35e1ca2 | 2023-11-16 22:00:01 +0100 | [diff] [blame] | 8 | |
| 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 Hanl | 72c7b83 | 2015-09-03 08:42:15 +0200 | [diff] [blame] | 29 | </ehcache> |