ehcache使用详解

ehcache为jvm内置缓存
1、导入ehcache依赖

<dependency>
   <groupId>net.sf.ehcache</groupId>
   <artifactId>ehcache</artifactId>
   <version>2.10.6</version>
</dependency>

2、启动类添加注解@EnableCaching :启用ehcache注解

3、src/main/resources目录下创建ehcache.xml文件

<?xml version="1.0" encoding="UTF-8"?>
<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xsi:noNamespaceSchemaLocation="http://ehcache.org/ehcache.xsd">

    <!-- 磁盘缓存位置 -->
    <diskStore path="java.io.tmpdir/ehcache"/>

    <!-- 默认缓存 -->
    <defaultCache
            maxEntriesLocalHeap="10000"
            eternal="false"
            timeToIdleSeconds="3600"
            timeToLiveSeconds="3600"
            maxEntriesLocalDisk="10000000"
            diskExpiryThreadIntervalSeconds="120"
            memoryStoreEvictionPolicy="LRU"/>

    <cache name="accessToken"
           maxElementsInMemory="1000"
           eternal="false"
           timeToIdleSeconds="7000"
           timeToLiveSeconds="7000"
           overflowToDisk="false"
           memoryStoreEvictionPolicy="LRU"/>
</ehcache>

3.1ehcache.xml文件配置说明
属性说明

2.1.diskStore
  指定数据存储位置,可指定磁盘中的文件夹位置。样例中配置位置为“d:/ehcache/2.2.defaultCache
  默认缓存配置
2.3.cache
  指定对象的缓存配置,其中 name 属性为指定缓存的名称(必须唯一)
2.4.配置属性中的元素说明
   1)maxElementsInMemory(正整数):
    在内存中缓存的最大对象数量
   2)maxElementsOnDisk(正整数):
    在磁盘上缓存的最大对象数量,默认值为0,表示不限制。 
   3)eternal:
    设定缓存对象保存的永久属性,默认为 false 。当为 true 时 timeToIdleSeconds、timeToLiveSeconds 失效。 
   4)timeToIdleSeconds(单位:秒):
    对象空闲时间,指对象在多长时间没有被访问就会失效。只对eternal为false的有效。默认值0,表示一直可以访问。
   5)timeToLiveSeconds(单位:秒):
    对象存活时间,指对象从创建到失效所需要的时间。只对eternal为false的有效。默认值0,表示一直可以访问。
   6)overflowToDisk:
    如果内存中数据超过内存限制,是否要缓存到磁盘上。 
    7)diskPersistent:
    是否在磁盘上持久化。指重启jvm后,数据是否有效。默认为false。 
    8)diskSpoolBufferSizeMB(单位:MB):
    DiskStore使用的磁盘大小,默认值30MB。每个cache使用各自的DiskStore。
    9)memoryStoreEvictionPolicy:
    如果内存中数据超过内存限制,向磁盘缓存时的策略。默认值LRU,可选FIFO、LFU。
回到顶部
3.清空策略
3.1.FIFO(first in first out):
  先进先出
3.2.LFU(Less Frequently Used:
  最少被使用,缓存的元素有一个hit属性,hit值最小的将会被清除缓存。
3.3.LRU(Least Recently Used)默认策略:
  最近最少使用,缓存的元素有一个时间戳,当缓存容量满了,而又需要腾出地方来缓存新的元素的时候,那么现有缓存元素中时间戳离当前时间最远的元素将被清除缓存。

4、使用代码
4.1 java使用方式

public void textEnchcahe() {
    CacheManager cacheManager = CacheManager.create("./src/main/resources/ehcache.xml");

    // 2. 获取缓存对象
    Cache cache = cacheManager.getCache("accessToken");
    /*默认ehcache.xml路径获取缓存对象*/
    //  Cache token = CacheManager.create().getCache("accessToken");
    //获取元素
    Element va = cache.get("key1");
    if(null ==va){
        //创建元素
        Element element = new Element("key1", "value123");
        cache.put(element);
    }else{
        //获取缓存数据
        System.out.println(va.getObjectValue());
    }
}

4.2 注解方式

//param为缓存key。第一次调用将值存入缓存中,再次调用时如果有缓存则直接返回缓存值,
//不再执行方法内代码;没有缓存则执行内部代码
//value为ehcache.xml文件cache标签name属性
@Cacheable(value = "accessToken", key = "#param")
public String ceshi1(String param) {
    Long timestamp = System.currentTimeMillis();
    return timestamp.toString();
}
//拼接key值
@Cacheable(value = "accessToken", key = "'key'+#param")
//缓存的条件,返回 true 或者 false,只有为 true 才进行缓存   例如:
@Cacheable(value = "testcache",condition = "#userName.length()>2")
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值