文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Java本地缓存工具LoadingCache怎么使用

2023-06-22 07:23

关注

这篇文章主要介绍“Java本地缓存工具LoadingCache怎么使用”,在日常操作中,相信很多人在Java本地缓存工具LoadingCache怎么使用问题上存在疑惑,小编查阅了各式资料,整理出简单好用的操作方法,希望对大家解答”Java本地缓存工具LoadingCache怎么使用”的疑惑有所帮助!接下来,请跟着小编一起来学习吧!

环境依赖

先添加maven依赖

        <dependency>            <groupId>com.google.guava</groupId>            <artifactId>guava</artifactId>            <version>30.1.1-jre</version>        </dependency>        <dependency>            <groupId>cn.hutool</groupId>            <artifactId>hutool-all</artifactId>            <version>5.5.2</version>        </dependency>        <dependency>            <groupId>org.projectlombok</groupId>            <artifactId>lombok</artifactId>            <optional>true</optional>        </dependency>

代码

不废话,上代码了。

package ai.guiji.csdn.tools; import cn.hutool.core.thread.ThreadUtil;import com.google.common.cache.*;import lombok.extern.slf4j.Slf4j; import java.text.MessageFormat;import java.util.Map;import java.util.concurrent.TimeUnit;import java.util.function.Consumer;import java.util.function.Function;import java.util.stream.LongStream; @Slf4jpublic class CacheUtils {   private static LoadingCache<Long, String> cache;     private static void initCache(      Integer totleCount,      Integer overtime,      TimeUnit unit,      Function<Long, String> handleNotExist,      Consumer<Long> handleRemove) {    cache =        CacheBuilder.newBuilder()            // 缓存池大小            .maximumSize(totleCount)            // 设置时间对象没有被读/写访问则对象从内存中删除            .expireAfterWrite(overtime, unit)            // 移除监听器            .removalListener(                new RemovalListener<Long, String>() {                  @Override                  public void onRemoval(RemovalNotification<Long, String> rn) {                    handleRemove.accept(rn.getKey());                  }                })            .recordStats()            .build(                new CacheLoader<Long, String>() {                  @Override                  public String load(Long aLong) throws Exception {                    return handleNotExist.apply(aLong);                  }                });    log.info("初始化缓存");  }     public static void put(Long key, String value) {    try {      log.info("缓存存入:[{}]-[{}]", key, value);      cache.put(key, value);    } catch (Exception exception) {      log.error("存入缓存异常", exception);    }  }     public static void putMap(Map<Long, String> map) {    try {      log.info("批量缓存存入:[{}]", map);      cache.putAll(map);    } catch (Exception exception) {      log.error("批量存入缓存异常", exception);    }  }     public static String get(Long key) {    try {      return cache.get(key);    } catch (Exception exception) {      log.error("获取缓存异常", exception);      return null;    }  }     public static void removeKey(Long key) {    try {      cache.invalidate(key);    } catch (Exception exception) {      log.error("删除缓存异常", exception);    }  }     public static void removeAll(Iterable<Long> keys) {    try {      cache.invalidateAll(keys);    } catch (Exception exception) {      log.error("批量删除缓存异常", exception);    }  }     public static void clear() {    try {      cache.invalidateAll();    } catch (Exception exception) {      log.error("清理缓存异常", exception);    }  }     public static long size() {    return cache.size();  }   public static void main(String[] args) {    initCache(        Integer.MAX_VALUE,        10,        TimeUnit.SECONDS,        k -> {          log.info("缓存:[{}],不存在", k);          return "";        },        x -> log.info("缓存:[{}],已经移除", x));    System.out.println(size());    LongStream.range(0, 10).forEach(a -> put(a, MessageFormat.format("tt-{0}", a)));    System.out.println(cache.asMap());    ThreadUtil.sleep(5000);    LongStream.range(0, 10)        .forEach(            a -> {              System.out.println(get(a));              ThreadUtil.sleep(1000);            });    System.out.println(cache.asMap());    ThreadUtil.sleep(10000);    System.out.println(cache.asMap());  }}

代码说明

在初始化loadingCache的时候,可以添加缓存的最大数量、消逝时间、消逝或者移除监听事件、不存在键处理等等。在上面的代码中,我初始化缓存大小为Integer的最大值,写入10秒后消逝,如不存在key返回空字符串等等。

该类也提供了put、putAll、get、remove、removeAll、clear、size方法,可以对缓存进行存、取、删、清理、大小等操作。

main演示方法中,先往缓存存入10个数据,然后过5秒后每秒取一个数据,并且打印一下缓存中的全部内容。

补充一句LoadingCache是线程安全的哦。

演示一下

53.495 [main] INFO ai.guiji.csdn.tools.CacheUtils - 初始化缓存
0
15:31:53.502 [main] INFO ai.guiji.csdn.tools.CacheUtils - 缓存存入:[0]-[tt-0]
15:31:53.508 [main] INFO ai.guiji.csdn.tools.CacheUtils - 缓存存入:[1]-[tt-1]
15:31:53.508 [main] INFO ai.guiji.csdn.tools.CacheUtils - 缓存存入:[2]-[tt-2]
15:31:53.508 [main] INFO ai.guiji.csdn.tools.CacheUtils - 缓存存入:[3]-[tt-3]
15:31:53.508 [main] INFO ai.guiji.csdn.tools.CacheUtils - 缓存存入:[4]-[tt-4]
15:31:53.508 [main] INFO ai.guiji.csdn.tools.CacheUtils - 缓存存入:[5]-[tt-5]
15:31:53.508 [main] INFO ai.guiji.csdn.tools.CacheUtils - 缓存存入:[6]-[tt-6]
15:31:53.508 [main] INFO ai.guiji.csdn.tools.CacheUtils - 缓存存入:[7]-[tt-7]
15:31:53.509 [main] INFO ai.guiji.csdn.tools.CacheUtils - 缓存存入:[8]-[tt-8]
15:31:53.509 [main] INFO ai.guiji.csdn.tools.CacheUtils - 缓存存入:[9]-[tt-9]
{6=tt-6, 5=tt-5, 0=tt-0, 8=tt-8, 7=tt-7, 2=tt-2, 1=tt-1, 9=tt-9, 3=tt-3, 4=tt-4}
tt-0
tt-1
tt-2
tt-3
tt-4
15:32:03.572 [main] INFO ai.guiji.csdn.tools.CacheUtils - 缓存:[5],已经移除
15:32:03.573 [main] INFO ai.guiji.csdn.tools.CacheUtils - 缓存:[6],已经移除
15:32:03.573 [main] INFO ai.guiji.csdn.tools.CacheUtils - 缓存:[5],不存在
15:32:04.581 [main] INFO ai.guiji.csdn.tools.CacheUtils - 缓存:[6],不存在
15:32:05.589 [main] INFO ai.guiji.csdn.tools.CacheUtils - 缓存:[0],已经移除
15:32:05.589 [main] INFO ai.guiji.csdn.tools.CacheUtils - 缓存:[7],已经移除
15:32:05.589 [main] INFO ai.guiji.csdn.tools.CacheUtils - 缓存:[8],已经移除
15:32:05.589 [main] INFO ai.guiji.csdn.tools.CacheUtils - 缓存:[7],不存在
15:32:06.589 [main] INFO ai.guiji.csdn.tools.CacheUtils - 缓存:[8],不存在
15:32:07.591 [main] INFO ai.guiji.csdn.tools.CacheUtils - 缓存:[1],已经移除
15:32:07.591 [main] INFO ai.guiji.csdn.tools.CacheUtils - 缓存:[2],已经移除
15:32:07.591 [main] INFO ai.guiji.csdn.tools.CacheUtils - 缓存:[9],已经移除
15:32:07.591 [main] INFO ai.guiji.csdn.tools.CacheUtils - 缓存:[9],不存在
{6=, 5=, 8=, 7=, 9=}
{}
Process finished with exit code 0

可以看到,后面的5-9在内存中已经不存在对应的值了。

到此,关于“Java本地缓存工具LoadingCache怎么使用”的学习就结束了,希望能够解决大家的疑惑。理论与实践的搭配能更好的帮助大家学习,快去试试吧!若想继续学习更多相关知识,请继续关注编程网网站,小编会继续努力为大家带来更多实用的文章!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯