`

Ehcache缓存配置

 
阅读更多

 

Ehcache缓存配置

 

简介

 

 

Cache的配置很灵活,官方提供的Cache配置方式有好几种。你可以通过声明配置、在xml中配置、在程序里配置或者调用构造方法时传入不同的参数。

 

你可以将Cache的配置从代码中剥离出来,也可以在使用运行时配置,所谓的运行时配置无非也就是在代码中配置。以下是运行时配置的好处:

 

·   在同一个地方配置所有的Cache,这样很容易管理Cache的内存和磁盘消耗。

·   发布时可更改Cache配置。

·   可再安装阶段就检查出配置错误信息,而避免了运行时错误。

 

本文将会对ehcache.xml配置文件进行详细的阐述。在配置的时可以拷贝一个现有的ehcache.xml,如果没有请点击这里去下载。

 

 

ehcache-failsafe.xml

 

 

如果你调用了CacheManager默认构造方法去创建CacheManager的实例,此方法会到classpath中找ehcache.xml文件,否则它会到类路径下找ehcache-failsafe.xml文件。而ehcache-failsafe.xml被包含在jar包中,所有它肯定能找的到。

 

ehcache-failsafe.xml提供了一个非常简单的默认配置,这样可以使用户在没有创建ehcache.xml的情况下使用Ehcache

 

不过这样做Ehcache会提醒用户创建一个正确的Ehcache配置。

 

ehcache.xml片段:

<ehcache>
    <diskStore path="java.io.tmpdir"/>
    <defaultCache
            maxElementsInMemory="10000"
            eternal="false"
            timeToIdleSeconds="120"
            timeToLiveSeconds="120"
            overflowToDisk="true"
            maxElementsOnDisk="10000000"
            diskPersistent="false"
            diskExpiryThreadIntervalSeconds="120"
            memoryStoreEvictionPolicy="LRU"
            />
</ehcache>

 

ehcache.xml和其他配置文件

 

 

Ehcache-1.6之前的版本,只支持ASCII编码的ehcache.xml配置文件。在Ehcach-1.6之后版本中,支持UTF8编码的ehcache.xml配置文件。因为向后兼容,所有采用ASCII编码的配置文件完全没有必要转换为UTF8

 

一个CacheManager必须要有一个XML配置。由于磁盘路径或是监听端口,多个CacheManager使用同一个配置文件时会出现错误。

 

下面是ehcache.xml具体实例以及配置指南

 

<ehcache xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance

 

·   CacheManager配置

 

DmulticastGroupPort=4446,这样可以配置监听端口。

 

·   DiskStore配置

 

如果你使用的DiskStore(磁盘缓存),你必须要配置DiskStore配置项。如果不配置,Ehcache将会使用java.io.tmpdir

 

diskStroe的“path”属性是用来配置磁盘缓存使用的物理路径的,Ehcache磁盘缓存使用的文件后缀名是.data.index

 

<disStore path=”java.io.tmpdir”/>

 

·   CacheManagerEventListener配置

 

我们通过CacheManagerEventListenerFactory可以实例化一个CacheManagerPeerProvider,当我们从CacheManageraddedremoved Cache时,将通知CacheManagerPeerProvider,这样一来,我们就可以很方面的对CacheManager中的Cache做一些统计。

 

注册到CacheManager的事件监听类名有: adding a Cacheremoving a Cache

 

<cacheManagerEventListenerFacotory class=”” properties=””/>

 

·   CacheManagerPeerProvider配置

 

在集群中CacheManager配置CacheManagerPeerProviderFactory创建CacheManagerPeerProvider。具体的实例如下:

<cacheManagerPeerProviderFactoryclass="net.sf.ehcache.distribution.

RMICacheManagerPeerProviderFactory"

properties="peerDiscovery=manual, rmiUrls=//server1:40000/sampleCache1|//server2:40000/sampleCache1| //server1:40000/sampleCache2|//server2:40000/sampleCache2"

propertySeparator="," />

·   CacheManagerPeerListener配置

 

CacheManagerPeerListener配置是用来监听集群中缓存消息的分发的。

 

<cacheManagerPeerListenerFactory

    class="net.sf.ehcache.distribution.RMICacheManagerPeerListenerFactory"

    properties="hostName=fully_qualified_hostname_or_ip,

                port=40001,

                socketTimeoutMillis=120000"

                propertySeparator="," />

·   Cache配置

 

·           nameCache的唯一标识

·           maxElementsInMemory:内存中最大缓存对象数。

·           maxElementsOnDisk:磁盘中最大缓存对象数,若是0表示无穷大。

·           eternalElement是否永久有效,一但设置了,timeout将不起作用。

·           overflowToDisk:配置此属性,当内存中Element数量达到maxElementsInMemory时,Ehcache将会Element写到磁盘中。

·           timeToIdleSeconds:设置Element在失效前的允许闲置时间。仅当element不是永久有效时使用,可选属性,默认值是0,也就是可闲置时间无穷大。

·           timeToLiveSeconds:设置Element在失效前允许存活时间。最大时间介于创建时间和失效时间之间。仅当element不是永久有效时使用,默认是0.,也就是element存活时间无穷大。

·           diskPersistent:是否缓存虚拟机重启期数据。(这个虚拟机是指什么虚拟机一直没看明白是什么,有高人还希望能指点一二)。

·           diskExpiryThreadIntervalSeconds:磁盘失效线程运行时间间隔,默认是120秒。

·           diskSpoolBufferSizeMB:这个参数设置DiskStore(磁盘缓存)的缓存区大小。默认是30MB。每个Cache都应该有自己的一个缓冲区。

·           memoryStoreEvictionPolicy:当达到maxElementsInMemory限制时,Ehcache将会根据指定的策略去清理内存。默认策略是LRU(最近最少使用)。你可以设置为FIFO(先进先出)或是LFU(较少使用)。这里比较遗憾,Ehcache并没有提供一个用户定制策略的接口,仅仅支持三种指定策略,感觉做的不够理想。

 

·   Cache Exception Handling配置

 

<cacheExceptionHandlerFactory class="com.example.ExampleExceptionHandlerFactory"                              properties="logLevel=FINE"/>

 

 

总结

 

 

这里只对通用缓存的配置做了详细的阐述,至于RMI缓存和集群缓存可以参考这里

 

下面给出几个配置示例:

 

·   Ehcache默认Cache配置

 

<defaultCache

        maxElementsInMemory="10000"

        eternal="false"

        timeToIdleSeconds="120"

        timeToLiveSeconds="120"

        overflowToDisk="true"

        diskSpoolBufferSizeMB="30"

        maxElementsOnDisk="10000000"

        diskPersistent="false"

        diskExpiryThreadIntervalSeconds="120"

        memoryStoreEvictionPolicy="LRU"

        />

 

·   SampleCache1配置

 

简单配置,在ehcache.xml文件中有此配置,在使用Ehcache前最好将其删除掉,自己配置。

 

缓存名sampleCache1,内存中最多可缓存10000Element,其中的element会在闲置5分钟或是存活10分钟之后失效。

 

超过10000element时,element将会输出到磁盘中,输出路径是java.io.tmpdir

 

<cache name="sampleCache1"

       maxElementsInMemory="10000"

       maxElementsOnDisk="1000"

       eternal="false"

       overflowToDisk="true"

       diskSpoolBufferSizeMB="20"

       timeToIdleSeconds="300"

       timeToLiveSeconds="600"

       memoryStoreEvictionPolicy="LFU"

        />

 

·   SampleCache2配置

 

Cache名为SampleCache2,内存中最多可以缓存1000element,超出1000不能输出到磁盘中。缓存是永久有效的。

 

<cache name="sampleCache2"

       maxElementsInMemory="1000"

       eternal="true"

       overflowToDisk="false"

       memoryStoreEvictionPolicy="FIFO"

        />

 

·   SampleCache3配置

 

Cache名为SampleCache3。可缓存到磁盘。磁盘缓存将会缓存虚拟机重启期的数据。磁盘缓存失效线程运行间隔时间是10分钟。

 

<cache name="sampleCache3"

       maxElementsInMemory="500"

       eternal="false"

       overflowToDisk="true"

       timeToIdleSeconds="300"

       timeToLiveSeconds="600"

       diskPersistent="true"

       diskExpiryThreadIntervalSeconds="1"

       memoryStoreEvictionPolicy="LFU"

        />

 

·   sampleDistributedCache1配置

 

 

Cache名为sampleDistributedCache1

 

<cache name="sampleDistributedCache1"

       maxElementsInMemory="10"

       eternal="false"

       timeToIdleSeconds="100"

       timeToLiveSeconds="100"

       overflowToDisk="false">

    <cacheEventListenerFactory

            class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"/>

    <bootstrapCacheLoaderFactory

            class="net.sf.ehcache.distribution.RMIBootstrapCacheLoaderFactory"/>

</cache>

 

·   sampleDistributedCache2配置

 

<cache name="sampleDistributedCache2"

       maxElementsInMemory="10"

       eternal="false"

       timeToIdleSeconds="100"

       timeToLiveSeconds="100"

       overflowToDisk="false">

    <cacheEventListenerFactory

            class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"

            properties="replicateAsynchronously=false, replicatePuts=false,

                        replicateUpdates=true, replicateUpdatesViaCopy=true,

                        replicateRemovals=false"/>

</cache>

 

·   sampleDistributedCache3配置

 

<!--

Sample distributed cache named sampleDistributedCache3.

This cache replicates using defaults except that the asynchronous replication

interval is set to 200ms.

-->

<cache name="sampleDistributedCache3"

       maxElementsInMemory="10"

       eternal="false"

       timeToIdleSeconds="100"

       timeToLiveSeconds="100"

       overflowToDisk="false">

    <cacheEventListenerFactory

            class="net.sf.ehcache.distribution.RMICacheReplicatorFactory"

            properties="asynchronousReplicationIntervalMillis=200"/>

</cache>

 

文章转自:http://blog.csdn.net/mgoann/article/details/4087714

分享到:
评论

相关推荐

    ehcache缓存配置详解

    ehcache 缓存配置详解 Ehcache 是一个流行的 Java 缓存框架,提供了强大的缓存机制,帮助开发者提高应用程序的性能和可扩展性。 Ehcache 的配置主要包括 diskstore、defaultCache、cache 三个部分,这三个部分的...

    javaWeb中Ehcache缓存配置说明

    ### JavaWeb中Ehcache缓存配置详解 在JavaWeb应用开发中,缓存技术扮演着至关重要的角色,它能够显著提升应用性能和响应速度,减少数据库负担。Ehcache作为一款广泛使用的开源缓存解决方案,其高效、灵活的特性受到...

    Ehcache缓存配置.doc

    总结来说,Ehcache的配置是其强大功能的关键,允许开发者根据应用需求定制缓存行为,包括内存和磁盘缓存的容量、过期策略、分布式缓存配置等。理解并熟练运用这些配置,能够优化应用程序的性能,减少不必要的资源...

    cache/ehcache缓存使用

    本文将详细讲解"cache/ehcache缓存使用"的相关知识点,包括缓存的基本概念、Ehcache的介绍、以及如何在Java应用中使用Ehcache进行缓存操作。 首先,我们要理解什么是缓存。缓存是一种存储技术,它临时存储常用或...

    Ehcache缓存

    **Ehcache缓存** Ehcache是一种广泛使用的开源Java分布式缓存系统,它为高性能应用程序提供了内存存储和缓存解决方案。在Java世界中,尤其是在持久化框架如Hibernate的使用中,Ehcache扮演了至关重要的角色。由于...

    EHCache缓存技术介绍

    【EHCache缓存技术介绍】 缓存技术是提高软件系统性能的重要手段,特别是在处理大量数据时,通过将常用数据存储在内存中,可以显著减少对硬盘或数据库的访问,从而加快数据获取速度。EHCache是一种广泛使用的开源...

    springboot整合Ehcache组件,轻量级缓存管理

    Ehcache缓存简介 1、基础简介 EhCache是一个纯Java的进程内缓存框架,具有快速、上手简单等特点,是Hibernate中默认的缓存提供方。 2、Hibernate缓存 Hibernate三级缓存机制简介: 一级缓存:基于Session级别分配...

    mybatis添加ehcache缓存支持

    Ehcache的配置还包括其他高级选项,如`maxElementsOnDisk`(磁盘上最大缓存对象数),`diskPersistent`(是否在虚拟机重启后保留数据),`diskExpiryThreadIntervalSeconds`(磁盘失效检查线程的运行间隔),以及`...

    ehcache二级缓存配置文件

    2. 在Spring配置文件中配置Ehcache缓存管理器。 3. 在需要缓存的方法或类上添加`@Cacheable`、`@CacheEvict`等注解。 4. 可选:配置缓存切面,如`@EnableCaching`。 **5. 性能优化** - 选择合适的缓存策略(LRU、...

    Ehcache分布式缓存与其在SpringBoot应用

    同时,在`application.properties`或`application.yml`文件中配置Ehcache的相关参数,例如缓存的大小、过期时间等。 2. **Ehcache配置**:在`ehcache.xml`配置文件中,你可以指定Ehcache如何运行。对于分布式缓存,...

    ehcache缓存的配置

    ### ehcache缓存的配置详解 #### 一、ehcache简介 ehcache 是一款开源的高性能 Java 缓存框架,广泛应用于 Java 应用程序中,用于提高应用程序性能。通过在内存或磁盘中存储数据副本,ehcache 可以减少数据库访问...

    ehcache缓存的jar包和配置文件

    - 创建缓存管理器:使用`CacheManager`类初始化缓存管理器,并根据配置文件加载缓存配置。 - 获取和操作缓存:通过缓存管理器获取缓存实例,然后可以添加、检索、更新或删除缓存中的数据。 4. 示例配置: ```xml...

    EHcache缓存框架

    **EHcache缓存框架** EHcache是一款开源的Java缓存框架,它被广泛应用于提高应用程序的性能和响应速度,通过存储频繁访问的数据到内存中,避免了每次请求时都进行昂贵的数据库查询。EHcache的设计目标是轻量级、高...

    EhCache缓存的配置文件

    EhCache缓存的配置文件

    Spring 与Ehcache实现基于方法的缓存

    然后,需要配置Ehcache,创建一个`ehcache.xml`配置文件,定义缓存策略,如缓存的大小、过期时间等。例如: ```xml ``` 这里定义了一个名为`myCache`的缓存,最大内存元素为1000个,非永久存储,闲置120秒后...

    EHcache 缓存使用 手动存储 配置到SSH

    **SSH中的缓存配置**: 在SSH架构中,我们可以分别在Struts、Spring和Hibernate三个层次上配置和使用EHcache。首先是**Spring**,作为整个应用的容器,它负责管理包括缓存管理器在内的各种bean。在`...

Global site tag (gtag.js) - Google Analytics