ehcache.xml 581 Bytes
<?xml version="1.0" encoding="UTF-8"?>
<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" updateCheck="false">      
	<diskStore path="java.io.tmpdir"/>
	<defaultCache 
		maxElementsInMemory="1000" 
		eternal="false" 
		timeToIdleSeconds="120" 
		timeToLiveSeconds="120"             
		overflowToDisk="false"
	/>
	<cache name="SimplePageCachingFilter" 
        maxElementsInMemory="10000" 
        eternal="false"
        overflowToDisk="false" 
        timeToIdleSeconds="900" 
        timeToLiveSeconds="1800"
        memoryStoreEvictionPolicy="LFU" 
	/>
</ehcache>