ehcache.xml

27 lines | 910 B Blame History Raw Download
<?xml version="1.0" encoding="UTF-8"?>
<ehcache name="com.shopizer.core.cache" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:noNamespaceSchemaLocation="http://ehcache.org/ehcache.xsd">
	
    <defaultCache
            maxElementsInMemory="10000"
            eternal="false"
            timeToIdleSeconds="120"
            timeToLiveSeconds="120"
            overflowToDisk="false"
            diskSpoolBufferSizeMB="30"
            maxElementsOnDisk="10000000"
            diskPersistent="false"
            diskExpiryThreadIntervalSeconds="120"
            memoryStoreEvictionPolicy="LRU" />
            
            
     <cache name="com.shopizer.OBJECT_CACHE"
           maxElementsInMemory="10000"
           eternal="false"
           overflowToDisk="false"
           timeToIdleSeconds="1200"
           timeToLiveSeconds="1200"
           memoryStoreEvictionPolicy="LFU" />

</ehcache>