- 浏览: 304025 次
文章分类
最新评论
-
流年末年:
那四个参数还是没看懂.....能不能解释下showPassst ...
我写的密码强度验证方法(原创) -
kingcs2008:
// 验证pws.jsshowPassstrength(&qu ...
我写的密码强度验证方法(原创) -
h957355152:
请问博主这个怎么用呢?我直接放到jsp里面调用showPass ...
我写的密码强度验证方法(原创) -
qq_15138059:
我写的全国省市县三级联动菜单,拿出来和大家分享了(原创) -
valenon:
评论呢?从MAIL FROM命令开始貌似就出错了:500 Er ...
如何发送伪造的电子邮件
EHCache 是一个纯java的,在Hibernate2.1充当可插入的的在进程中的缓存,它具有以下缓存,最小的依赖性,全面的文特性:快速,简单,丰富的文档和测试用例。
官方网站 http://ehcache.sourceforge.net/
ehcache-1.2 cacheNames 列表的取得;
方法一:
- CacheManager.create();
- String[] cacheNames = CacheManager.getInstance().getCacheNames();
方法二:
- CacheManager manager = new CacheManager();
- String[] cacheNames = manager.getCacheNames();
方法三:
- CacheManager manager1 = new CacheManager( 'src/config/ehcache1.' );
- CacheManager manager2 = new CacheManager( 'src/config/ehcache2.xml' );
- String[] cacheNamesForManager1 = manager1.getCacheNames();
- String[] cacheNamesForManager2 = manager2.getCacheNames();
ehcache-1.2 管理器各种建立的方法:
方法一:
- CacheManager manager = new CacheManager();
方法二:
- CacheManager manager = new CacheManager( 'src/config/ehcache.xml' );
方法三:
- URL url = getClass().getResource( '/anotherconfigurationname.xml' );
- CacheManager manager = new CacheManager(url);
方法四:
- InputStream fis = new FileInputStream( new File( 'src/config/ehcache.xml' ).getAbsolutePath());
- try {
- CacheManager manager = new CacheManager(fis);
- } finally {
- fis.close();
- }
添加和删除缓存元素
设置一个名为test 的新cache,test属性为默认
- CacheManager singletonManager = CacheManager.create();
- singletonManager.addCache( 'testCache' );
- Cache test = singletonManager.getCache( 'testCache' );
设置一个名为test 的新cache,并定义其属性
- CacheManager singletonManager = CacheManager.create();
- Cache memoryOnlyCache = new Cache( 'testCache' , 5000 , false , false , 5 , 2 );
- manager.addCache(memoryOnlyCache);
- Cache test = singletonManager.getCache( 'testCache' );
Cache 属性说明:
构造函数:
public Cache(java.lang.String name,
int maxElementsInMemory,
boolean overflowToDisk,
boolean eternal,
long timeToLiveSeconds,
long timeToIdleSeconds)
参数说明:
name - 元素名字。
maxElementsInMemory - 设定内存中创建对象的最大值。
overflowToDisk - 设置当内存中缓存达到 maxInMemory 限制时元素是否可写到磁盘
上。
eternal - 设置元素(译注:内存中对象)是否永久驻留。如果是,将忽略超
时限制且元素永不消亡。
timeToIdleSeconds - 设置某个元素消亡前的停顿时间。
也就是在一个元素消亡之前,两次访问时间的最大时间间隔值。
这只能在元素不是永久驻留时有效(译注:如果对象永恒不灭,则
设置该属性也无用)。
如果该值是 0 就意味着元素可以停顿无穷长的时间。
timeToLiveSeconds - 为元素设置消亡前的生存时间。
也就是一个元素从构建到消亡的最大时间间隔值。
这只能在元素不是永久驻留时有效。
删除缓存元素:
- CacheManager singletonManager = CacheManager.create();
- singletonManager.removeCache( 'test' );
关闭缓存管理器 CacheManager
- CacheManager.getInstance().shutdown();
对于缓存对象的操作:
放入一个简单的对象到缓存元素;
- Cache cache = manager.getCache( 'sampleCache1' );
- Element element = new Element( 'key1' , 'value1' );
- cache.put(element);
得到一个序列化后的对象属性值;
- Cache cache = manager.getCache( 'sampleCache1' );
- Element element = cache.get( 'key1' );
- Serializable value = element.getValue();
得到一个没有序列化后的对象属性值;
- Cache cache = manager.getCache( 'sampleCache1' );
- Element element = cache.get( 'key1' );
- Object value = element.getObjectValue();
删除一个对象从元素;
- Cache cache = manager.getCache( 'sampleCache1' );
- Element element = new Element( 'key1' , 'value1'
- cache.remove( 'key1' );
对于永固性磁盘存储,立即存储到磁盘:
- Cache cache = manager.getCache( 'sampleCache1' );
- cache.flush();
获得缓存大小:
得到缓存的对象数量;
- Cache cache = manager.getCache( 'sampleCache1' );
- int elementsInMemory = cache.getSize();
得到缓存对象占用内存的数量
- Cache cache = manager.getCache( 'sampleCache1' );
- long elementsInMemory = cache.getMemoryStoreSize();
得到缓存对对象占用磁盘的数量
- Cache cache = manager.getCache( 'sampleCache1' );
- long elementsInMemory = cache.getDiskStoreSize();
关于缓存的读取和丢失的记录
得到缓存读取的命中次数;
- Cache cache = manager.getCache( 'sampleCache1' );
- int hits = cache.getHitCount();
得到内存中缓存读取的命中次数;
- Cache cache = manager.getCache( 'sampleCache1' );
- int hits = cache.getMemoryStoreHitCount();
得到磁盘中缓存读取的命中次数;
- Cache cache = manager.getCache( 'sampleCache1' );
- int hits = cache.getDiskStoreCount();
得到缓存读取的丢失次数;
- Cache cache = manager.getCache( 'sampleCache1' );
- int hits = cache.getMissCountNotFound();
得到缓存读取的已经被销毁的对象丢失次数;
- Cache cache = manager.getCache( 'sampleCache1' );
- int hits = cache.getMissCountExpired();
--------------------------
----------简单例子------------
--------------------------
实战:
XML文件格式:
- maxElementsInMemory = '10000'
- eternal = 'false'
- timeToIdleSeconds = '120'
- timeToLiveSeconds = '120'
- overflowToDisk = 'true'
- diskPersistent = 'false'
- diskExpiryThreadIntervalSeconds = '120'
- memoryStoreEvictionPolicy = 'LRU'
- />
- maxElementsInMemory = '10000'
- eternal = 'false'
- overflowToDisk = 'true'
- timeToIdleSeconds = '2'
- timeToLiveSeconds = '3'
- memoryStoreEvictionPolicy = 'LFU'
- />
源码:
- import java.io.Serializable;
- import net.sf.ehcache.Cache;
- import net.sf.ehcache.CacheManager;
- import net.sf.ehcache.Element;
- /**
- #############################################################################
- # DESCRIBE ehcache 缓存操作DEMO
- # AUTHOR 悠~游
- # DATE 2006-7-10
- # COMPANY FLX
- # PORJECT ehcache-demo
- #############################################################################
- */
- public class Demo {
- static CacheManager manager= new CacheManager();
- /**
- *##############################################################################
- *
- * @DESCRIBE
- * @param args
- * @throws InterruptedException
- *
- *##############################################################################
- */
- public static void main(String[] args) throws InterruptedException {
- String[] cacheNames = manager.getCacheNames();
- System.out.println( '读取的缓存列表为:' );
- for ( int i= 0 ;i System.out.println( '-- ' +(i+ 1 )+ ' ' +cacheNames[i]);
- }
- Cache cache = manager.getCache( 'cache1' );
- Element element = new Element( 'key1' , 'value1' );
- cache.put(element);
- element = cache.get( 'key1' );
- Serializable value = element.getValue();
- System.out.println( '序列化后的值为:' +value.toString());
- element = cache.get( 'key1' );
- Object value1 = element.getObjectValue();
- System.out.println( '未序列化的值为:' +value1.toString());
- int elementsInMemory = cache.getSize();
- System.out.println( '得到缓存的对象数量:' +elementsInMemory);
- long elementsInMemory1 = cache.getMemoryStoreSize();
- System.out.println( '得到缓存对象占用内存的数量:' +elementsInMemory1);
- long elementsInMemory2 = cache.getDiskStoreSize();
- System.out.println( '得到缓存对对象占用磁盘的数量:' +elementsInMemory2);
- int hits = cache.getHitCount();
- System.out.println( '得到缓存读取的命中次数:' +hits);
- int hits1 = cache.getMemoryStoreHitCount();
- System.out.println( '得到内存中缓存读取的命中次数:' +hits1);
- int hits2 =cache.getDiskStoreHitCount();
- System.out.println( '得到磁盘中缓存读取的命中次数:' +hits2);
- int hits3 = cache.getMissCountNotFound();
- System.out.println( '得到缓存读取的丢失次数:' +hits3);
- int hits4 = cache.getMissCountExpired();
- System.out.println( '得到缓存读取的已经被销毁的对象丢失次数:' +hits4);
-
}
发表评论
-
java正则表达式高级用法:转换驼峰标示
2012-06-26 16:47 5801String source = "LastLog ... -
你会做Web上的用户登录功能吗?(转)
2012-06-25 13:22 1367Web上的用户登录功能应 ... -
使用pager-taglib.jar实现的分页技术
2012-06-24 02:34 931//1.导入pager-taglib.jar包; / ... -
我写的验证码生成方案,可防止绝大多数机械识别。
2012-06-20 14:59 2403web.xml <!DOCTYPE web-app ... -
如何在myeclipse中使用maven?
2012-06-11 14:22 168421.下载maven,解压到D盘ma ... -
安装subclipse, MyEclipse8 SVN插件
2012-06-09 22:39 957安装subclipse, MyEclipse8 SVN插件 ... -
PDF生成器
2012-05-28 02:53 846我自己写的一个pdf生成器,能导出百度博客为PDF -
我的自动投票器
2012-04-17 13:58 1297自动投票器,支持windows的32位机器 下面的压缩包是编 ... -
list,set,map,数组间的相互转换(转载)
2012-03-16 16:29 28491.list转set Java代码 ... -
一个给pojo生成hashcode、equals、toString等方法的工具类
2012-03-06 09:52 4254一个给pojo生成hashcode、equals、toStri ... -
ehcache的用法
2012-02-13 22:13 0Spring ... -
使用ehcache来缓存页面
2012-02-13 22:08 807关于缓存的话题,在坛子里已经有很多讨论,简单的来说,如果一个应 ... -
java笔记:自己动手写javaEE框架(二)--业务层Service以及Service单元测试
2012-02-13 00:55 0前一篇博文里有三 ... -
struts+spring+hibernate的web应用<四> Web层代码编写(2)
2012-02-13 00:50 0接着就是写资源文件了。 在 com.game. ... -
struts+spring+hibernate的web应用<四> Web层代码编写(1)
2012-02-13 00:49 1045前面的文章: ... -
struts+spring+hibernate的web应用<三> Service层代码编写
2012-02-13 00:46 858前面的文章: ... -
struts+spring+hibernate的web应用<二> Dao层代码编写
2012-02-13 00:45 862前一篇文章 (struts+spring ... -
struts+spring+hibernate的web应用<一> 架构搭建
2012-02-13 00:44 777许久没有些文章了,现 ... -
检测一个字符串是否在jvm的常量池中(原创)
2012-01-11 09:07 2156检测一个字符串是否在jvm的常量池中 public ... -
我写的密码强度验证方法(原创)
2011-12-18 15:26 8373/* *说明: * 该方法主要分析密码的内容构成 ...
相关推荐
2. 在Spring配置文件中配置Ehcache缓存管理器。 3. 在需要缓存的方法或类上添加`@Cacheable`、`@CacheEvict`等注解。 4. 可选:配置缓存切面,如`@EnableCaching`。 **5. 性能优化** - 选择合适的缓存策略(LRU、...
本文将详细讲解"cache/ehcache缓存使用"的相关知识点,包括缓存的基本概念、Ehcache的介绍、以及如何在Java应用中使用Ehcache进行缓存操作。 首先,我们要理解什么是缓存。缓存是一种存储技术,它临时存储常用或...
**Ehcache缓存** Ehcache是一种广泛使用的开源Java分布式缓存系统,它为高性能应用程序提供了内存存储和缓存解决方案。在Java世界中,尤其是在持久化框架如Hibernate的使用中,Ehcache扮演了至关重要的角色。由于...
为了提高性能和减少对数据库的直接访问,MyBatis 提供了缓存功能,而Ehcache 是一个广泛使用的开源Java缓存库,可以集成到MyBatis 中以实现高效的缓存管理。 在MyBatis 中添加Ehcache 缓存支持,首先需要确保项目...
Ehcache缓存简介 1、基础简介 EhCache是一个纯Java的进程内缓存框架,具有快速、上手简单等特点,是Hibernate中默认的缓存提供方。 2、Hibernate缓存 Hibernate三级缓存机制简介: 一级缓存:基于Session级别分配...
**EHcache缓存框架** EHcache是一款开源的Java缓存框架,它被广泛应用于提高应用程序的性能和响应速度,通过存储频繁访问的数据到内存中,避免了每次请求时都进行昂贵的数据库查询。EHcache的设计目标是轻量级、高...
首先,我们需要理解Spring的AOP概念,AOP允许我们定义横切关注点,如日志、事务管理或,正如在这个案例中,缓存管理。Spring通过代理模式实现了AOP,可以自动在目标方法调用前后执行特定的逻辑,这为我们实现方法...
通过上述对Ehcache缓存配置的深入解析,我们可以看到,合理配置Ehcache不仅可以显著提升JavaWeb应用的性能,还能有效管理资源,避免不必要的系统负担。掌握这些关键配置项的含义及用法,对于优化应用、提升用户体验...
- 缓存管理器(Cache Manager):它是Ehcache的核心,负责创建和管理多个缓存。 - 缓存(Cache):每个缓存都有一个唯一的名称,用于存储键值对。键必须是唯一的,而值可以是任何对象。 - 键(Key)与值(Value)...
3. **创建缓存管理器**:在代码中通过`CacheManager`初始化缓存管理器。 4. **获取和操作缓存**:使用`Cache`对象进行数据的存取,如`cache.put(key, value)`和`cache.get(key)`。 5. **监控和优化**:Ehcache提供...
"ehcache缓存依赖的jar"这个标题暗示我们将讨论Ehcache的核心库及其依赖关系。 Ehcache的核心JAR文件是`ehcache.jar`,它包含了Ehcache的所有核心组件和接口。这个文件提供了缓存管理、缓存配置、缓存策略(如LRU、...
基于SpringBoot+Layui搭建的学生管理系统源码,融合shiro安全框架和Ehcache缓存框架.zip基于SpringBoot+Layui搭建的学生管理系统源码,融合shiro安全框架和Ehcache缓存框架.zip 【备注】 该项目是个人毕设项目,...
- **类层次模型**:Ehcache的缓存管理基于层次结构,每个层级都可以有自己的缓存策略。 - **缓存对象**:使用`<cache>`元素定义具体的缓存对象,如网页、数据段等。 - **缓存操作**:通过`put()`、`get()`、`...
默认情况下,Spring Boot的`@EnableCaching`注解会使用`ConcurrentHashMap`作为基本的缓存管理器。然而,对于生产环境,我们通常需要更强大的缓存解决方案,如EhCache。EhCache是一个开源、内存级别的缓存框架,提供...
**Ehcache缓存系统详解** Ehcache是一款开源、高性能、轻量级的Java缓存框架,广泛应用于各种Java应用程序中,以提高数据访问速度并降低数据库负载。它的核心特性包括内存缓存、磁盘存储和分布式缓存,使得在大数据...
一级缓存是SessionFactory级别的,它是自动管理的,每个Session内部都有一个一级缓存;而二级缓存则是SessionFactory级别的,可以跨Session共享数据,从而进一步优化性能。 **二级缓存ehcache** ehcache是...
**标题解析:** "ehcache缓存页面.doc" 这个标题表明了文档内容主要关于Ehcache,一个广泛使用的Java缓存库,用于提高应用程序性能。它可能详细介绍了Ehcache如何被用来缓存页面内容,以减少数据库查询和提升响应...
在Spring框架中,可以利用`@Cacheable`、`@CacheEvict`和`@CacheConfig`注解实现自动缓存管理。例如: ```java @Cacheable(value = "myCache", key = "#id") public User getUser(String id) { // ... } ``` ...
**Spring+EhCache缓存实例详解** 在现代的Java企业级应用中,缓存技术扮演着至关重要的角色,它能够显著提升系统性能,减少数据库负载。Spring框架与EhCache的结合,为开发者提供了一种高效、易用的缓存解决方案。...