快速业务通道

Ehcache缓存框架 - 编程入门网

作者 佚名技术 来源 NET编程 浏览 发布时间 2012-06-14

Ehcache缓存框架

时间:2011-10-22 z7swf

Kernel: ehcache.jar

Xml:ehcache.xml

Xml代码

<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  xsi:noNamespaceSchemaLocation="ehcache.xsd">   <diskStore path="c:\\temp" />   <cacheManagerEventListenerFactory class="" properties="" />   <!--   Uncomment the following in a clustered configuration.   -->   <!--<cacheManagerPeerProviderFactory   class="net.sf.ehcache.distribution.RMICacheManagerPeerProviderFactory"   properties="peerDiscovery=automatic,multicastGroupAddress=230.0.0.1,multicastGroupPort=4446, timeToLive=1"   propertySeparator=","   />   <cacheManagerPeerListenerFactory   class="net.sf.ehcache.distribution.RMICacheManagerPeerListenerFactory"   />-->   <!--   Hibernate will use the defaultCache unless custom configurations are  defined   below for individual domain objects, collection, queries, etc.   -->   <defaultCache   maxElementsInMemory="10000"   eternal="false"      timeToIdleSeconds="600"   overflowToDisk="true"   >   <!--<cacheEventListenerFactory  class="net.sf.ehcache.distribution.RMICacheReplicatorFactory" />   <bootstrapCacheLoaderFactory  class="net.sf.ehcache.distribution.RMIBootstrapCacheLoaderFactory" />-->   </defaultCache>   <!--   The cache name is the same as the class name specified in your  Hibernate   mapping file.   -->   <cache   name="sampleCache"   maxElementsInMemory="5"   maxElementsOnDisk="100"   eternal="false"      timeToIdleSeconds="2"      timeToLiveSeconds="2"   overflowToDisk="true"   >   <!--<cacheEventListenerFactory  class="net.sf.ehcache.distribution.RMICacheReplicatorFactory" />   <bootstrapCacheLoaderFactory  class="net.sf.ehcache.distribution.RMIBootstrapCacheLoaderFactory" />-->   </cache> </ehcache>

Ehcache缓存框架(2)

时间:2011-10-22 z7swf

以上ehcache.xml是ehcache的配置文件,并且存放在应用的classpath中。下面是对该XML文件中的一 些元素及其属性的相关说明:

<diskStore>元素:指定一个文件目录,当EHCache把数据写到硬盘上时,将把数据写到这个文 件目录下。

<defaultCache>元素:设定缓存的默认数据过期策略。

<cache>元素:设定具体的命名缓存的数据过期策略。

<cache>元素的属性

name:缓存名称。通常为缓存对象的类名(非严格标准)。

maxElementsInMemory:设置基于内存的缓存可存放对象的最大数目。

maxElementsOnDisk:设置基于硬盘的缓存可存放对象的最大数目。

eternal:如果为true,表示对象永远不会过期,此时会忽略timeToIdleSeconds和timeToLiveSeconds 属性,默认为false;

timeToIdleSeconds: 设定允许对象处于空闲状态的最长时间,以秒为单位。当对象自从最近一次被 访问后

凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢!

分享到: 更多

Copyright ©1999-2011 厦门凌众科技有限公司 厦门优通互联科技开发有限公司 All rights reserved

地址(ADD):厦门软件园二期望海路63号701E(东南融通旁) 邮编(ZIP):361008

电话:0592-5908028 传真:0592-5908039 咨询信箱:web@lingzhong.cn 咨询OICQ:173723134

《中华人民共和国增值电信业务经营许可证》闽B2-20100024  ICP备案:闽ICP备05037997号