ehcache configuration

This commit is contained in:
Michele Artini 2023-10-05 14:43:44 +02:00
parent cfd40e15c1
commit 6179426ca6
1 changed files with 118 additions and 0 deletions

View File

@ -0,0 +1,118 @@
<?xml version="1.0" encoding="UTF-8"?>
<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://www.ehcache.org/ehcache.xsd"
updateCheck="true"
monitoring="autodetect"
dynamicConfig="true">
<cache name="fundingpath-ids"
maxElementsInMemory="5000"
eternal="false"
overflowToDisk="false"
timeToLiveSeconds="3600"
timeToIdleSeconds="3600"
memoryStoreEvictionPolicy="LFU"
transactionalMode="off">
</cache>
<cache name="indexdsinfo-cache"
maxElementsInMemory="5000"
eternal="false"
overflowToDisk="false"
timeToLiveSeconds="3600"
timeToIdleSeconds="3600"
memoryStoreEvictionPolicy="LFU"
transactionalMode="off">
</cache>
<cache name="objectstoreid-cache"
maxElementsInMemory="5000"
eternal="false"
overflowToDisk="false"
timeToLiveSeconds="3600"
timeToIdleSeconds="3600"
memoryStoreEvictionPolicy="LFU"
transactionalMode="off">
</cache>
<cache name="context-cache"
maxElementsInMemory="5000"
eternal="false"
overflowToDisk="false"
timeToLiveSeconds="3600"
timeToIdleSeconds="3600"
memoryStoreEvictionPolicy="LFU"
transactionalMode="off">
</cache>
<cache name="context-cache-funder"
maxElementsInMemory="5000"
eternal="false"
overflowToDisk="false"
timeToLiveSeconds="3600"
timeToIdleSeconds="3600"
memoryStoreEvictionPolicy="LFU"
transactionalMode="off">
</cache>
<cache name="context-cache-community"
maxElementsInMemory="5000"
eternal="false"
overflowToDisk="false"
timeToLiveSeconds="3600"
timeToIdleSeconds="3600"
memoryStoreEvictionPolicy="LFU"
transactionalMode="off">
</cache>
<cache name="dsm-aggregationhistory-cache-v1"
maxElementsInMemory="5000"
eternal="false"
overflowToDisk="false"
timeToLiveSeconds="3600"
timeToIdleSeconds="3600"
memoryStoreEvictionPolicy="LFU"
transactionalMode="off">
</cache>
<cache name="dsm-aggregationhistory-cache-v2"
maxElementsInMemory="5000"
eternal="false"
overflowToDisk="false"
timeToLiveSeconds="3600"
timeToIdleSeconds="3600"
memoryStoreEvictionPolicy="LFU"
transactionalMode="off">
</cache>
<cache name="dsm-firstharvestdate-cache"
maxElementsInMemory="5000"
eternal="false"
overflowToDisk="false"
timeToLiveSeconds="3600"
timeToIdleSeconds="3600"
memoryStoreEvictionPolicy="LFU"
transactionalMode="off">
</cache>
<cache name="vocabularies-cache"
maxElementsInMemory="5000"
eternal="false"
overflowToDisk="false"
timeToLiveSeconds="3600"
timeToIdleSeconds="3600"
memoryStoreEvictionPolicy="LFU"
transactionalMode="off">
</cache>
<cache name="community-cache"
maxElementsInMemory="5000"
eternal="false"
overflowToDisk="false"
timeToLiveSeconds="3600"
timeToIdleSeconds="3600"
memoryStoreEvictionPolicy="LFU"
transactionalMode="off">
</cache>
<cache name="info"
maxElementsInMemory="5000"
eternal="false"
overflowToDisk="false"
timeToLiveSeconds="3600"
timeToIdleSeconds="3600"
memoryStoreEvictionPolicy="LFU"
transactionalMode="off">
</cache>
</ehcache>