我是靠谱客的博主 稳重大米,最近开发中收集的这篇文章主要介绍Caffeine缓存增改查过期,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

Caffeine缓存增改查过期
1、引入pom

<dependency>
    <groupId>com.github.ben-manes.caffeine</groupId>
    <artifactId>caffeine</artifactId>
    <version>2.9.2</version>
</dependency>

2、测试类
@Slf4j
@RunWith(SpringRunner.class)
@SpringBootTest(classes = ReportApplication.class)
public class LocalCacheTest {

@Test
public void test() throws InterruptedException {
    Cache<Object, String> cache1 = Caffeine.newBuilder()
            .expireAfterWrite(1, TimeUnit.SECONDS)
            .maximumSize(1000)
            .build();
    String key = "test";
    cache1.put(key, "Okok10000");
    System.out.println(cache1.getIfPresent(key));
    System.out.println(cache1.getIfPresent(key));
    cache1.put(key, "hello0");
    System.out.println(cache1.getIfPresent(key));
    Thread.sleep(1000);
    System.out.println(cache1.getIfPresent(key));


}

}

缓存----》内存 缓存过期时间和是否需要用缓存想好了再用

最后

以上就是稳重大米为你收集整理的Caffeine缓存增改查过期的全部内容,希望文章能够帮你解决Caffeine缓存增改查过期所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(50)

评论列表共有 0 条评论

立即
投稿
返回
顶部