EHCache
Posted onEHCache - 单落撒旦的日志 - 网易博客
配色: 字号:大中小 EHCache - 单落撒旦的日志 - 网易博客 2010-12-07 | 阅:257 转:1 | 分享
EHCache
缓存技术 2010-06-08 14:07:18 阅读170 评论0 字号:大中小 订阅 一、简介
非常简单,而且易用。
ehcache 是一个非常轻量级的缓存实现,而且从1.2 之后就支持了集群,而且是hibernate 默认的缓存provider 。EhCache 是一个纯Java的进程内缓存框架,具有快速、精干等特点,是Hibernate中默认的CacheProvider。
Ehcache可以直接使用。也可以和Hibernate对象/关系框架结合使用。还可以做Servlet缓存。
Cache 存储方式 :内存或磁盘。
官方网站:[http://ehcache.sourceforge.net/](http://ehcache.sourceforge.net/)
主要特性
- 快速.
- 简单.
- 多种缓存策略
- 缓存数据有两级:内存和磁盘,因此无需担心容量问题
- 缓存数据会在虚拟机重启的过程中写入磁盘
- 可以通过RMI、可插入API等方式进行分布式缓存
- 具有缓存和缓存管理器的侦听接口
- 支持多缓存管理器实例,以及一个实例的多个缓存区域
- 提供Hibernate的缓存实现
- 等等
二、快速上手
1、 项目类库中添加ehcache.jar;
2、 在类路径下编写ehcache.xml配置文件。
三、配置文件参数详解
ehcache.xml是ehcache的配置文件,并且存放在应用的classpath中。下面是对该XML文件中的一些元素及其属性的相关说明:
user.home – 用户主目录
user.dir – 用户当前工作目录
java.io.tmpdir – 默认临时文件路径
eternal:如果为true,表示对象永远不会过期,此时会忽略timeToIdleSeconds和timeToLiveSeconds属性,默认为false; timeToIdleSeconds: 设定允许对象处于空闲状态的最长时间,以秒为单位。当对象自从最近一次被访问后,如果处于空闲状态的时间超过了timeToIdleSeconds属性值,这个对象就会过期。当对象过期,EHCache将把它从缓存中清空。只有当eternal属性为false,该属性才有效。如果该属性值为0,则表示对象可以无限期地处于空闲状态。 timeToLiveSeconds:设定对象允许存在于缓存中的最长时间,以秒为单位。当对象自从被存放到缓存中后,如果处于缓存中的时间超过了 timeToLiveSeconds属性值,这个对象就会过期。当对象过期,EHCache将把它从缓存中清除。只有当eternal属性为false,该属性才有效。如果该属性值为0,则表示对象可以无限期地存在于缓存中。timeToLiveSeconds必须大于timeToIdleSeconds属性,才有意义。 overflowToDisk:如果为true,表示当基于内存的缓存中的对象数目达到了maxElementsInMemory界限后,会把益出的对象写到基于硬盘的缓存中。注意:如果缓存的对象要写入到硬盘中的话,则该对象必须实现了Serializable接口才行。 memoryStoreEvictionPolicy:缓存对象清除策略。有三种: 1 FIFO ,first in first out ,这个是大家最熟的,先进先出,不多讲了 2 LFU , Less Frequently Used ,就是上面例子中使用的策略,直白一点就是讲一直以来最少被使用的。如上面所讲,缓存的元素有一个hit 属性,hit 值最小的将会被清出缓存。 2 LRU ,Least Recently Used ,最近最少使用的,缓存的元素有一个时间戳,当缓存容量满了,而又需要腾出地方来缓存新的元素的时候,那么现有缓存元素中时间戳离当前时间最远的元素将被清出缓存。 四、单独使用EHCache 1.创建CacheManager (net.sf.ehcache.CacheManager) (1)使用默认配置文件创建 CacheManager manager = CacheManager.create(); (2)使用指定配置文件创建 CacheManager manager = CacheManager.create("src/config/ehcache.xml"); (3)从classpath找寻配置文件并创建 URL url = getClass().getResource("/anothername.xml"); CacheManager manager = CacheManager.create(url); (4)通过输入流创建 InputStream fis = new FileInputStream(new File("src/config/ehcache.xml").getAbsolutePath()); try { manager = CacheManager.create(fis); } finally { fis.close(); } 2.创建Caches (net.sf.ehcache.Cache) (1)取得配置文件中预先 定义的sampleCache1设置,生成一个Cache Cache cache = manager.getCache("sampleCache1"); (2)设置一个名为test 的新cache,test属性为默认 CacheManager manager = CacheManager.create(); manager.addCache("test"); (3)设置一个名为test 的新cache,并定义其属性 CacheManager manager = CacheManager.create(); Cache cache = new Cache("test", 1, true, false, 5, 2); manager.addCache(cache); (4)删除cache CacheManager singletonManager = CacheManager.create(); singletonManager.removeCache("sampleCache1");
3.使用Caches (1)往cache中加入元素 Element element = new Element("key1", "value1"); cache.put(new Element(element); (2)从cache中取得元素 Element element = cache.get("key1"); (3)从cache中删除元素 Cache cache = manager.getCache("sampleCache1"); Element element = new Element("key1", "value1"); cache.remove("key1");
3.卸载CacheManager ,关闭Cache manager.shutdown(); 下附代码。 五、在 Hibernate 中运用EHCache 1、hibernate.cfg.xml中需设置如下: 3系列版本加入
< filter-mapping > < filter-name > indexCacheFilter < url-pattern > /index.action 缓存首页的部分内容时,需要使用SimplePageFragmentCachingFilter 这个filter 。如:
< filter > < filter-name > indexCacheFilter < filter-class > net.sf.ehcache.constructs.web.filter.SimplePageFragmentCachingFilter
< filter-mapping > < filter-name > indexCacheFilter < url-pattern > //index_right.jsp
这个jsp 需要被jsp:include 到其他页面,这样就做到的局部页面的缓存。这一点貌似没有oscache 的tag 好用。 七、在Spring框架中使用EHCache缓存 就是使用Spring提供的springmodules和EHCache来简化程序的开发,通过配置文件来完成提供缓存。参考springmodules的文档。 1、配置ehcache.xml文件 2、创建Spring EHCache的配置xml文件 配置文件代码示例(调试通过): <?xml version="1.0" encoding="UTF-8"?>
也可以使用注解的形式进行标注缓存方法,不过要修改配置文件,详见springmodules的文档,这里就不提供了。
缓存说明:
1、方法不含有参数
时间到期缓存失效;调用flush,缓存失效。
2、方法中含有参数
参数不同则每次都缓存,若缓存中存在相同对象,则调用缓存。
当调用flush,该id对应的缓存都失效。
当缓存时间到期,该id对应的缓存都失效。
建议:对没有关联的缓存对象采取不同的id配置。所以ehcache会有好多的cache-id配置信息。
<props>
<prop key="com....test.Manager.get/*">
cacheName=dictCache
</prop>
………
<prop key="com....test.Manager2.get/*">
cacheName=dictCache2
</prop>
</props>
<props>
<prop key="com....test.Manager.update/*">
cacheNames=dictCache
</prop>
………
<prop key="com....test.Manager2.update/*">
cacheNames=dictCache2
</prop>
</props>
上一篇:基于按annotation的hibernate主键生成策略 - 白首穷经通秘义...
下一篇:Cache技术―OSCache - 单落撒旦的日志 - 网易博客
献花(0)
类似文章
- Ehcache
- 配置Spring+hibernate使用ehcache作为se...
- Hibernate ehcache二级缓存技术
- EhCache使用详细介绍(转)
- 二级 ehcache
- Hibernate一级缓存和二级缓存
- 【有声读物】单田芳评书 - 浅草细浪的日...
- 低血压 - 只要有你的日志 - 网易博客
- 网易博客教程一 - 闲人SGM的日志 - 网易... 更多
0
您可能会喜欢
[
老师开博客 天天开"网上家长会" ](http://www.360doc.com/content/07/0508/10/26144_488073.shtml "老师开博客 天天开"网上家长会"") [
博客冲击波(1)----商业周刊精华文章 ](http://www.360doc.com/content/08/0706/10/8596_1402791.shtml "博客冲击波(1)----商业周刊精华文章") [
红杏妹的博客 l ](http://www.360doc.com/content/12/0307/16/5060984_192513101.shtml "红杏妹的博客 l") [
Ehcache ](http://www.360doc.com/content/11/0811/15/7270363_139632250.shtml "Ehcache") [
教你怎样制作博客首页 - 敏儿的日志 - 网易博客 ](http://www.360doc.com/content/10/0317/13/826574_19113845.shtml "教你怎样制作博客首页 - 敏儿的日志 - 网易博客")
发表评论:
您好,请 登录 或者 注册 后再进行评论 使用合作网站登录:新浪微博QQ人人
最新文章
- JS计算字符串所占字节数
- List的功能方法
- maven dependency:sources
- IBatis
- myeclipse 8.5-9.0 安装 svn 方...
- 深入理解Java序列化中的SerialV...
- 关于spring中 几个 java.lang.C...
- Derby 轻量级数据库
- Template method pattern 模板...
- 工厂方法模式(Factory method)...
- DAO层的分析(一)
- 提高数据库并发性能概要 更多>> -
热门文章