首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > XML SOAP >

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

2012-11-03 
自己动手写ehcache工具类和配置文件ehcache.xml以下代码为ehcache的工具类代码,仅作参考?xml version1.

自己动手写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> 

热点排行