Project

General

Profile

1
<?xml version="1.0" encoding="UTF-8"?>
2
<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3
    xsi:noNamespaceSchemaLocation="http://ehcache.org/ehcache.xsd" updateCheck="false">
4
    <!--
5
     | Please see http://ehcache.sourceforge.net/documentation/configuration.html for
6
     | detailed information on how to configurigure caches in this file
7
     +-->
8
    <!-- Location of persistent caches on disk -->
9
    <diskStore path="java.io.tmpdir/EhCacheSpringAnnotationsExampleApp" />
10

    
11
    <defaultCache eternal="true" maxElementsInMemory="10000"
12
        overflowToDisk="false" diskPersistent="false" timeToIdleSeconds="0"
13
        timeToLiveSeconds="0" memoryStoreEvictionPolicy="LRU"/>
14

    
15
	<cache name="claimator"/>
16
	<cache name="alertator.subscriptions"/>
17
	<cache name="querynator"/>
18
</ehcache>
    (1-1/1)