guava学习 -cache基础

cache练习记录
cache的基础使用

package cache;

import com.google.common.cache.*;
import org.junit.Test;

import java.time.Duration;
import java.time.Instant;
import java.util.HashMap;
import java.util.Map;
import java.util.concurrent.ConcurrentMap;
import java.util.concurrent.TimeUnit;

public class CacheTest {
   

    @Test
    public void Test() {
   

        Instant first = Instant.now();
        // 时间间隔
        Instant second = Instant.now();
        Duration duration = Duration.between(first, second);


        Cache<String, String> cache = CacheBuilder.newBuilder()
                .maximumSize(1000)
                .recordStats() //开启统计信息开关
                //访问后过期
                .expireAfterAccess(10, TimeUnit.DAYS)
                //.expireAfterWrite(10,TimeUnit.DAYS)
                //expireAfterWrite(duration)调用的是expireAfterWrite(duration.toNanos(), TimeUnit.NANOSECONDS);
                //.expireAfterWrite(duration)

                .build(new CacheLoader<String, String>() {
   
                    @Override
                    public String load(String key) throws Exception {
   
                        return key + "1";
                    }
                });
        //存入
        cache.put("word", "Guava Cache");
        cache.put("word2", "Guava Cache2");

        //存入,和map的putAll一样
        Map<String, String> map = new HashMap<>();
		cache.putAll(map);
        System.out.println(cache.getIfPresent("word"));
        //清楚指定值得cache
        cache.invalidate("word");
        System.out.println(cache.getIfPresent("word"));
        System.out.println(cache.getIfPresent("word2"));
        //清除所有
        cache.invalidateAll();
        //清除指定
        //cache.invalidateAll(cache.invalidateAll(););

        System.out.println(cache.getIfPresent("word2"));
        //cache的大小
        System.out.println(cache.size()
  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 2
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值