blob: 425933991982a9ee7d46e8ab18a4ada1b3a3ad80 [file] [log] [blame]
<ehcache xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
xsi:noNamespaceSchemaLocation='http://ehcache.org/ehcache.xsd'>
<defaultCache eternal='true' overflowToDisk='false'/>
<!--maxBytesLocalHeap="200M"-->
<diskStore path="./cache_store"/>
<cache name="documents"
timeToIdleSeconds="172800"
eternal='false'
memoryStoreEvictionPolicy="LRU"
maxEntriesLocalHeap="2000"
overflowToDisk='false'/>
<cache name='users'
timeToIdleSeconds="172800"
eternal='false'
memoryStoreEvictionPolicy="LRU"
maxEntriesLocalHeap="50"
overflowToDisk='false'/>
<cache name='id_tokens'
timeToIdleSeconds="172800"
eternal='true'
maxElementsOnDisk="10000000"
memoryStoreEvictionPolicy="LRU"
maxEntriesLocalHeap="50"
overflowToDisk='true'/>
<cache name='id_tokens_inv'
timeToIdleSeconds="322800"
eternal='true'
maxElementsOnDisk="10000000"
memoryStoreEvictionPolicy="LRU"
maxEntriesLocalHeap="50"
overflowToDisk='true'/>
<cache name='auth_codes'
timeToIdleSeconds="600"
eternal='false'
memoryStoreEvictionPolicy="LRU"
maxEntriesLocalHeap="100"
overflowToDisk='false'/>
<cache name='resources'
eternal='false'
overflowToDisk='false'
maxEntriesLocalHeap="60"
timeToIdleSeconds="172800"
diskSpoolBufferSizeMB="30"
diskExpiryThreadIntervalSeconds="120"
memoryStoreEvictionPolicy="LRU"
statistics="false"/>
</ehcache>