ehcache.xml
1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<ehcache maxBytesLocalHeap="1G" maxBytesLocalDisk="5G">
<diskStore path="java.io.tempdir" />
<sizeOfPolicy maxDepth="150000"/>
<defaultCache
maxElementsInMemory = "100000"
maxElementsOnDisk = "0"
eternal="false"
timeToLiveSeconds="180"
timeToIdleSeconds="180"
overflowToDisk = "false"
diskPersistent = "false"
diskSpoolBufferSizeMB = "2000"
diskExpiryThreadIntervalSeconds = "360"
memoryStoreEvictionPolicy = "LFU"
/>
<cache name="com.cloudstore"
eternal="false"
overflowToDisk="false"
diskPersistent="false"
timeToLiveSeconds="1800"
diskSpoolBufferSizeMB="2000"
memoryStoreEvictionPolicy="LRU" />
<cache name="formmodecache"
eternal="false"
timeToLiveSeconds="180"
timeToIdleSeconds="180"
overflowToDisk="false"
diskPersistent="false"
diskSpoolBufferSizeMB="2000"
memoryStoreEvictionPolicy="LFU" />
<cache name="workflowcache"
eternal="false"
overflowToDisk="true"
diskPersistent="true"
timeToLiveSeconds="300"
timeToIdleSeconds="300"
diskSpoolBufferSizeMB="2048"
memoryStoreEvictionPolicy="LRU" />
</ehcache>