comparison flys-artifacts/doc/conf/cache.xml @ 1190:f514894ec2fd

merged flys-artifacts/2.5
author Thomas Arendsen Hein <thomas@intevation.de>
date Fri, 28 Sep 2012 12:14:17 +0200
parents 107d44b3455d
children 2df1f9facd6c
comparison
equal deleted inserted replaced
917:b48c36076e17 1190:f514894ec2fd
1 <?xml version="1.0" encoding="UTF-8"?>
2 <ehcache>
3
4 <diskStore path="java.io.tmpdir"/>
5
6 <defaultCache
7 maxElementsInMemory="1000"
8 eternal="false"
9 timeToIdleSeconds="120"
10 timeToLiveSeconds="3600"
11 overflowToDisk="true"
12 maxElementsOnDisk="100000"
13 diskPersistent="false"
14 diskExpiryThreadIntervalSeconds="120"
15 memoryStoreEvictionPolicy="LRU"
16 />
17
18 <!-- This one is used for the WST value tables -->
19
20 <cache name="wst-value-table"
21 maxElementsInMemory="20"
22 maxElementsOnDisk="100"
23 eternal="false"
24 timeToIdleSeconds="360"
25 overflowToDisk="true"
26 timeToLiveSeconds="14400"
27 diskPersistent="true"
28 memoryStoreEvictionPolicy="LRU"
29 />
30
31 <!-- This one is used to cache the distance infos per river as Documents -->
32 <cache name="service-distanceinfo"
33 maxElementsInMemory="20"
34 eternal="false"
35 timeToIdleSeconds="360"
36 timeToLiveSeconds="86400"
37 memoryStoreEvictionPolicy="LFU"
38 />
39
40 <!-- This one is used to cache the distance infos per river as Lists -->
41 <cache name="annotations"
42 maxElementsInMemory="200"
43 eternal="false"
44 timeToIdleSeconds="360"
45 timeToLiveSeconds="86400"
46 memoryStoreEvictionPolicy="LFU"
47 />
48
49 <!-- This one is used to cache the computed values.-->
50 <cache name="computed.values"
51 maxElementsInMemory="200"
52 eternal="false"
53 timeToLiveSeconds="172800"
54 overflowToDisk="true"
55 diskPersistent="true"
56 memoryStoreEvictionPolicy="LRU"
57 />
58
59 <!-- This one is used for the SQL statements used by the static datacage -->
60 <cache name="datacage.db"
61 maxElementsInMemory="2000"
62 eternal="false"
63 timeToLiveSeconds="7200"
64 memoryStoreEvictionPolicy="LFU"
65 />
66 </ehcache>

http://dive4elements.wald.intevation.org