读书人

自个儿动手写ehcache工具类和配置文件

发布时间: 2012-11-03 10:57:43 作者: rapoo

自己动手写ehcache工具类和配置文件ehcache.xml

以下代码为ehcache的工具类代码,仅作参考

<?xml version="1.0" encoding="UTF-8"?><ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://ehcache.org/ehcache.xsd"><!-- 设置磁盘持久化的位置 --><diskStore path="E:/temp" /> <defaultCache maxElementsInMemory="10000" eternal="true"        overflowToDisk="true" />    <cache name="BrandKeywordMonitorCache"           maxElementsInMemory="0"           maxElementsOnDisk="90000"            eternal="false"            overflowToDisk="true"            diskSpoolBufferSizeMB="2048"           timeToIdleSeconds="7200"            timeToLiveSeconds="7200"            memoryStoreEvictionPolicy="LFU"           diskPersistent="true"            logging="false"            />     <cache name="HttpStatusCache"           maxElementsInMemory="0"           maxElementsOnDisk="90000"            eternal="false"           overflowToDisk="true"            diskSpoolBufferSizeMB="2048"           diskExpiryThreadIntervalSeconds="120"           diskPersistent="true"            timeToIdleSeconds="7200"            timeToLiveSeconds="7200"            memoryStoreEvictionPolicy="LFU"                      logging="false"            />    <cache name="CrabmanCacheALL"           maxElementsInMemory="90000"           maxElementsOnDisk="90000"            eternal="false"            overflowToDisk="true"            diskSpoolBufferSizeMB="2048"           timeToIdleSeconds="7200"            timeToLiveSeconds="7200"            memoryStoreEvictionPolicy="LFU"           diskPersistent="true"             />        </ehcache> 

读书人网 >XML SOAP

热点推荐