EhCache 是一个纯Java的进程内缓存框架,具有快速、精干等特点,是Hibernate中默认的CacheProvider
一 ehcache API:
1: Using the CacheManager
1.1所有ehcache的使用, 都是从 CacheManager. 开始的.
有多种方法创建CacheManager实例:
- //Create a singleton CacheManager using defaults, then list caches.
- CacheManager.getInstance()
或者:
- //Create a CacheManager instance using defaults, then list caches.
- CacheManager manager = new CacheManager();
- String[] cacheNames = manager.getCacheNames();
如果需要从指定配置文件创建 CacheManager:
- Create two CacheManagers, each with a different configuration, and list the caches in each.
- CacheManager manager1 = new CacheManager("src/config/ehcache1.xml");
- CacheManager manager2 = new CacheManager("src/config/ehcache2.xml");
- String[] cacheNamesForManager1 = manager1.getCacheNames();
- String[] cacheNamesForManager2 = manager2.getCacheNames();
1.2 Adding and Removing Caches Programmatically
手动创建一个cache, 而不是通过配置文件:
- //creates a cache called testCache, which
- //will be configured using defaultCache from the configuration
- CacheManager singletonManager = CacheManager.create();
- singletonManager.addCache("testCache");
- Cache test = singletonManager.getCache("testCache");
或者:
- //Create a Cache and add it to the CacheManager, then use it. Note that Caches are not usable until they have
- //been added to a CacheManager.
- public void testCreatCacheByProgram()
- {
- CacheManager singletonManager = CacheManager.create();
- Cache memoryOnlyCache = new Cache("testCache", 5000, false, false, 5, 2);
- singletonManager.addCache(memoryOnlyCache);
- Cache testCache = singletonManager.getCache("testCache");
- assertNotNull(testCache);
- }
手动移除一个cache:
- //Remove cache called sampleCache1
- CacheManager singletonManager = CacheManager.create();
- singletonManager.removeCache("sampleCache1");
1.3 Shutdown the CacheManager
ehcache应该在使用后关闭, 最佳实践是在code中显式调用:
- //Shutdown the singleton CacheManager
- CacheManager.getInstance().shutdown();
2 Using Caches
比如我有这样一个cache:
- <cache name="sampleCache1" maxElementsInMemory="10000"
- maxElementsOnDisk="1000" eternal="false" overflowToDisk="true"
- diskSpoolBufferSizeMB="20" timeToIdleSeconds="300"
- timeToLiveSeconds="600" memoryStoreEvictionPolicy="LFU" />
2.1 Obtaining a reference to a Cache
获得该cache的引用:
- String cacheName = "sampleCache1";
- CacheManager manager = new CacheManager("src/ehcache1.xml");
- Cache cache = manager.getCache(cacheName);
2.2 Performing CRUD operations
下面的代码演示了ehcache的增删改查:
- public void testCRUD()
- {
- String cacheName = "sampleCache1";
- CacheManager manager = new CacheManager("src/ehcache1.xml");
- Cache cache = manager.getCache(cacheName);
- //Put an element into a cache
- Element element = new Element("key1", "value1");
- cache.put(element);
- //This updates the entry for "key1"
- cache.put(new Element("key1", "value2"));
- //Get a Serializable value from an element in a cache with a key of "key1".
- element = cache.get("key1");
- Serializable value = element.getValue();
- //Get a NonSerializable value from an element in a cache with a key of "key1".
- element = cache.get("key1");
- assertNotNull(element);
- Object valueObj = element.getObjectValue();
- assertNotNull(valueObj);
- //Remove an element from a cache with a key of "key1".
- assertNotNull(cache.get("key1"));
- cache.remove("key1");
- assertNull(cache.get("key1"));
- }
2.3 Disk Persistence on demand
- //sampleCache1 has a persistent diskStore. We wish to ensure that the data //and index are written immediately.
- public void testDiskPersistence()
- {
- String cacheName = "sampleCache1";
- CacheManager manager = new CacheManager("src/ehcache1.xml");
- Cache cache = manager.getCache(cacheName);
- for (int i = 0; i < 50000; i++)
- {
- Element element = new Element("key" + i, "myvalue" + i);
- cache.put(element);
- }
- cache.flush();
- Log.debug("java.io.tmpdir = " + System.getProperty("java.io.tmpdir"));
- }
备注: 持久化到硬盘的路径由虚拟机参数"java.io.tmpdir"决定.
例如, 在windows中, 会在此路径下
C:\Documents and Settings\li\Local Settings\Temp
在linux中, 通常会在: /tmp 下
2.4 Obtaining Cache Sizes
以下代码演示如何获得cache个数:
- public void testCachesizes()
- {
- long count = 5;
- String cacheName = "sampleCache1";
- CacheManager manager = new CacheManager("src/ehcache1.xml");
- Cache cache = manager.getCache(cacheName);
- for (int i = 0; i < count; i++)
- {
- Element element = new Element("key" + i, "myvalue" + i);
- cache.put(element);
- }
- //Get the number of elements currently in the Cache.
- int elementsInCache = cache.getSize();
- assertTrue(elementsInCache == 5);
- //Cache cache = manager.getCache("sampleCache1");
- long elementsInMemory = cache.getMemoryStoreSize();
- //Get the number of elements currently in the DiskStore.
- long elementsInDiskStore = cache.getDiskStoreSize();
- assertTrue(elementsInMemory + elementsInDiskStore == count);
- }
3: Registering CacheStatistics in an MBeanServer
ehCache 提供jmx支持:
- CacheManager manager = new CacheManager();
- MBeanServer mBeanServer = ManagementFactory.getPlatformMBeanServer();
- ManagementService.registerMBeans(manager, mBeanServer, false, false, false, true);
把该程序打包, 然后:
- java -Dcom.sun.management.jmxremote -jar 程序名.jar
再到javahome/bin中运行jconsole.exe, 便可监控cache.
4. 用户可以自定义处理cacheEventHandler, 处理诸如元素放入cache的各种事件(放入,移除,过期等事件)
只需三步:
4.1 在cache配置中, 增加cacheEventListenerFactory节点.
- <cache name="Test" maxElementsInMemory="1" eternal="false"
- overflowToDisk="true" timeToIdleSeconds="1" timeToLiveSeconds="2"
- diskPersistent="false" diskExpiryThreadIntervalSeconds="1"
- memoryStoreEvictionPolicy="LFU">
- <cacheEventListenerFactory class="co.ehcache.EventFactory" />
- </cache>
4.2: 编写EventFactory, 继承CacheEventListenerFactory:
- public class EventFactory extends CacheEventListenerFactory
- {
- @Override
- public CacheEventListener createCacheEventListener(Properties properties)
- {
- // TODO Auto-generated method stub
- return new CacheEvent();
- }
- }
4.3 编写 class: CacheEvent, 实现 CacheEventListener 接口:
- public class CacheEvent implements CacheEventListener
- {
- public void dispose()
- {
- log("in dispose");
- }
- public void notifyElementEvicted(Ehcache cache, Element element)
- {
- // TODO Auto-generated method stub
- log("in notifyElementEvicted" + element);
- }
- public void notifyElementExpired(Ehcache cache, Element element)
- {
- // TODO Auto-generated method stub
- log("in notifyElementExpired" + element);
- }
- public void notifyElementPut(Ehcache cache, Element element) throws CacheException
- {
- // TODO Auto-generated method stub
- log("in notifyElementPut" + element);
- }
- public void notifyElementRemoved(Ehcache cache, Element element) throws CacheException
- {
- // TODO Auto-generated method stub
- log("in notifyElementRemoved" + element);
- }
- public void notifyElementUpdated(Ehcache cache, Element element) throws CacheException
- {
- // TODO Auto-generated method stub
- log("in notifyElementUpdated" + element);
- }
- public void notifyRemoveAll(Ehcache cache)
- {
- // TODO Auto-generated method stub
- log("in notifyRemoveAll");
- }
- public Object clone() throws CloneNotSupportedException
- {
- return super.clone();
- }
- private void log(String s)
- {
- Log.debug(s);
- }
- }
现在可以编写测试代码:
- public void testEventListener()
- {
- String key = "person";
- Person person = new Person("lcl", 100);
- MyCacheManager.getInstance().put("Test", key, person);
- Person p = (Person) MyCacheManager.getInstance().get("Test", key);
- try
- {
- Thread.sleep(10000);
- }
- catch (InterruptedException e)
- {
- // TODO Auto-generated catch block
- e.printStackTrace();
- }
- assertNull(MyCacheManager.getInstance().get("Test", key));
- }
根据配置, 该缓存对象生命期只有2分钟, 在Thread.sleep(10000)期间, 该缓存元素将过期被销毁, 在销毁前, 触发notifyElementExpired事件.
二 Ehcache配置文件
以如下配置为例说明:
- <cache name="CACHE_FUNC"
- maxElementsInMemory="2"
- eternal="false"
- timeToIdleSeconds="10"
- timeToLiveSeconds="20"
- overflowToDisk="true"
- diskPersistent="true"
- diskExpiryThreadIntervalSeconds="120" />
maxElementsInMemory :cache 中最多可以存放的元素的数量。如果放入cache中的元素超过这个数值,有两种情况:
1. 若overflowToDisk的属性值为true,会将cache中多出的元素放入磁盘文件中。
2. 若overflowToDisk的属性值为false,会根据memoryStoreEvictionPolicy的策略替换cache中原有的元素。
eternal :是否永驻内存。如果值是true,cache中的元素将一直保存在内存中,不会因为时间超时而丢失,所以在这个值为true的时候,timeToIdleSeconds和timeToLiveSeconds两个属性的值就不起作用了。
3. timeToIdleSeconds :访问这个cache中元素的最大间隔时间。如果超过这个时间没有访问这个cache中的某个元素,那么这个元素将被从cache中清除。
4. timeToLiveSeconds : cache中元素的生存时间。意思是从cache中的某个元素从创建到消亡的时间,从创建开始计时,当超过这个时间,这个元素将被从cache中清除。
5. overflowToDisk :溢出是否写入磁盘。系统会根据标签<diskStore path="java.io.tmpdir"/> 中path的值查找对应的属性值,如果系统的java.io.tmpdir的值是 D:\temp,写入磁盘的文件就会放在这个文件夹下。文件的名称是cache的名称,后缀名的data。如:CACHE_FUNC.data。
6. diskExpiryThreadIntervalSeconds :磁盘缓存的清理线程运行间隔.
7. memoryStoreEvictionPolicy :内存存储与释放策略。有三个值:
LRU -least recently used
LFU -least frequently used
FIFO-first in first out, the oldest element by creation time
diskPersistent : 是否持久化磁盘缓存。当这个属性的值为true时,系统在初始化的时候会在磁盘中查找文件名为cache名称,后缀名为index的的文件,如CACHE_FUNC.index 。这个文件中存放了已经持久化在磁盘中的cache的index,找到后把cache加载到内存。要想把cache真正持久化到磁盘,写程序时必须注意,在是用net.sf.ehcache.Cache的void put (Element element)方法后要使用void flush()方法。
更多说明可看ehcache自带的ehcache.xml的注释说明.
相关推荐
**EHCache的使用随记** EHCache是一款广泛应用于Java环境中的高效、易用且功能丰富的内存缓存系统。它能够显著提升应用性能,通过将常用数据存储在内存中,避免了反复从数据库读取,降低了I/O延迟。本文将探讨...
在ehCache的使用中,我们通常会遇到以下关键知识点: 1. **配置**:ehCache的配置文件通常是`ehcache.xml`,在这里可以定义缓存的策略,比如缓存的大小、存活时间、过期策略等。配置文件中的元素包括`<cache>`...
### EHCache的使用详解 #### 一、EHCache概述与特点 EHCache 是一款非常流行的开源缓存组件,由 SourceForge 提供支持。作为一个纯 Java 实现的高性能缓存库,EHCache 在处理高并发场景下表现优异。其主要特点包括...
在Java项目中,我们首先需要添加Ehcache的依赖。然后,可以通过以下代码创建和使用缓存: ```java // 引入Ehcache API import org.ehcache.Cache; import org.ehcache.CacheManager; import org.ehcache.config....
EhCache使用详解,HIBERNATE缓冲
本文将详细介绍Ehcache的基本使用和集群配置。 ### Ehcache 基础使用 1. **安装与引入**: 首先,你需要将Ehcache的JAR包添加到你的项目类路径中。你可以通过Maven或Gradle等构建工具进行依赖管理,或者直接下载JAR...
每次需要shiro做权限控制, Realm的授权方法就会被调用, 查询数据库重新完成授权! 问题: 性能开销比较大 解决: 对用户授权,只进行一次 查询,查询后,将用户授权信息放入缓存中,以后需要授权时,直接从缓存...
### Ehcache 使用详解 #### 一、概述 Ehcache 是一款开源的、纯 Java 缓存框架,它能够提供高性能、低延迟的数据缓存功能。Ehcache 的设计目标是提高应用程序性能,通过减少对数据库或其他外部系统的依赖来达到这...
**正文** Ehcache是一种广泛使用的Java缓存解决方案,它为高性能应用程序提供了内存和磁盘存储的缓存功能。...通过以上知识点和项目实例,相信读者对Ehcache的使用和与Spring的集成有了更深入的理解。
通过这些示例,我们可以学习如何设置Ehcache的分布式特性,例如使用Terracotta服务器进行集群缓存,以及如何处理分布式环境下的缓存一致性问题。 总结来说,Ehcache的监控涉及了多个方面,包括但不限于使用JMX、Web...
Ehcache是一个广泛使用的Java缓存库,它提供了一个高效且灵活的方式来存储和检索数据,以提高应用程序的性能。...通过深入学习这些文件,开发者可以更好地掌握Ehcache的使用方法,并将其有效地应用于Java项目中。
**二、EHCache的使用** 在Java项目中,使用EHCache通常包括以下步骤: 1. **添加依赖:**在Maven或Gradle构建文件中引入EHCache库。 2. **配置EHCache:**创建`ehcache.xml`配置文件,设置缓存的大小、过期策略、...
#### 二、Ehcache的使用 ##### 2.1 配置与初始化 - 在项目的`classPath`目录下添加`ehcache.xml`配置文件。 - 创建`CacheManager`实例。 - 使用`CacheManager`的`addCache`方法添加缓存配置。 示例代码: ```...
#### 二、Ehcache的安装与配置 **下载与安装:** - **官方网站**: Ehcache 的官方网站提供不同版本的下载链接(http://ehcache.org/downloads/catalog)。推荐使用最新版本(例如2.5.1版)。 - **下载内容**: 建议...
EhCache 的使用注意点: 1. 当用 Hibernate 的方式修改表数据(save,update,delete 等等),这时 EhCache 会自动把缓存中关于此表的所有缓存全部删除掉(这样能达到同步)。但 对于数据经常修改的表来说,可能就失去...
Ehcache 使用 XML 配置文件进行初始化设置,包括缓存的大小、过期策略、缓存策略等。例如: ```xml maxEntriesLocalHeap="10000" eternal="false" timeToIdleSeconds="120" timeToLiveSeconds="120"> ``...
**Ehcache的使用** 在Java项目中,可以使用以下步骤来集成并使用Ehcache: 1. 引入依赖:将Ehcache的JAR包添加到项目的类路径中。 2. 创建缓存管理器:通过`CacheManager`的静态方法`create()`创建一个缓存管理器...
4. **EhCache的使用** - **添加缓存**:通过`CacheManager`获取缓存实例,然后调用`put`方法添加元素。 - **检索缓存**:使用`get`方法根据键获取缓存中的值。 - **移除缓存**:`remove`方法可以删除指定键的元素...
**Ehcache的使用步骤:** 1. **添加依赖**:将提供的Ehcache jar包引入到项目类路径中,如果是Maven或Gradle项目,需要在配置文件中添加相应的依赖。 2. **配置Ehcache**:创建XML配置文件,定义缓存的名称、大小...