view flys-artifacts/doc/conf/cache.xml @ 2242:7e8e1d5384c0

Further refactoring of XYChartGenerator / ChartGenerator with the result, that timerange charts are now able to display lines. flys-artifacts/trunk@3890 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author Ingo Weinzierl <ingo.weinzierl@intevation.de>
date Fri, 03 Feb 2012 09:39:22 +0000
parents b5f3b29544ea
children b3f6d49cdc80
line wrap: on
line source
<?xml version="1.0" encoding="UTF-8"?>
<ehcache>

    <diskStore path="java.io.tmpdir"/>

    <defaultCache
            maxElementsInMemory="1000"
            eternal="false"
            timeToIdleSeconds="120"
            timeToLiveSeconds="3600"
            overflowToDisk="true"
            maxElementsOnDisk="100000"
            diskPersistent="false"
            diskExpiryThreadIntervalSeconds="120"
            memoryStoreEvictionPolicy="LRU"
            />

    <!-- This one is used for the WST value tables -->

    <cache name="wst-value-table"
           maxElementsInMemory="20"
           maxElementsOnDisk="100"
           eternal="false"
           timeToIdleSeconds="360"
           overflowToDisk="true"
           timeToLiveSeconds="14400"
           diskPersistent="true"
           memoryStoreEvictionPolicy="LRU"
           />

    <cache name="location-provider"
           maxElementsInMemory="20"
           eternal="false"
           diskPersistent="true"
           overflowToDisk="true"
           timeToIdleSeconds="360"
           timeToLiveSeconds="86400"
           memoryStoreEvictionPolicy="LFU"
           />

    <!-- This one is used to cache the computed values.-->
    <cache name="computed.values"
           maxElementsInMemory="200"
           eternal="false"
           timeToLiveSeconds="172800"
           overflowToDisk="true"
           diskPersistent="true"
           memoryStoreEvictionPolicy="LRU"
           />

    <!-- This one is used to cache the non-computed wst-values.-->
    <cache name="wst-value-table-static"
           maxElementsInMemory="200"
           eternal="false"
           timeToLiveSeconds="172800"
           overflowToDisk="true"
           diskPersistent="true"
           memoryStoreEvictionPolicy="LRU"
           />

    <!-- This one is used to cache the non-computed wst-values.-->
    <cache name="wst-wq-value-table-static"
           maxElementsInMemory="200"
           eternal="false"
           timeToLiveSeconds="172800"
           overflowToDisk="true"
           diskPersistent="true"
           memoryStoreEvictionPolicy="LRU"
           />

    <!-- This one is used for the SQL statements used by the static datacage -->
    <cache name="datacage.db"
           maxElementsInMemory="2000"
           eternal="false"
           timeToLiveSeconds="7200"
           memoryStoreEvictionPolicy="LFU"
           />

    <!-- This one is used for the cross section next neighbor lookup -->
    <cache name="cross-section-kms"
           maxElementsInMemory="50"
           eternal="false"
           timeToLiveSeconds="7200"
           memoryStoreEvictionPolicy="LRU"
           />

    <!-- This one is used to load chunks of the cross section lines  -->
    <cache name="fast-cross-section-lines"
           maxElementsInMemory="500"
           eternal="false"
           timeToLiveSeconds="7200"
           memoryStoreEvictionPolicy="LRU"
           overflowToDisk="true"
           diskPersistent="true"
           />

    <!-- This one is used to load single HYK Zones  -->
    <cache name="hykache"
           maxElementsInMemory="500"
           eternal="false"
           timeToLiveSeconds="14400"
           memoryStoreEvictionPolicy="LRU"
           overflowToDisk="true"
           diskPersistent="true"
           />

    <!-- This one is used for the cross section lookup 
         Because of lazy fetching and relatively big amount of data, disabled
         cache for now.
    <cache name="cross_sections"
           maxElementsInMemory="50"
           eternal="false"
           timeToLiveSeconds="86400"
           memoryStoreEvictionPolicy="LRU"
           />
    -->
</ehcache>

http://dive4elements.wald.intevation.org