码迷,mamicode.com
首页 > 其他好文 > 详细

Caffeine getIfPresent()返回 null 问题

时间:2021-06-28 19:10:03      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:垃圾   msi   sys   get   overflow   write   add   max   垃圾回收器   

Caffeine getIfPresent()返回 null 问题

问题

集成 Caffeine 时, 将 Cache 注册为全局的 Bean, 然后通过@Autowired 自动装配
使用 cache.put(key, val) 和 cache.getIfPresent(key) 放入和获取缓存

@Configuration
public class CaffeineConfig {
  @Bean
  public Cache<String, Object> cache() {
    return Caffeine.newBuilder()
      // 数量
      .maximumSize(1024)
      .expireAfterWrite(30, TimeUnit.MINUTES)
      // 弱引用
      .weakKeys()
      .weakValues()
      // 删除监听事件
      .removalListener(
        (RemovalListener<String, Object>) (key, val, reason) ->
          System.out.println("key:" + key + ", val:" + val + ", reason:" + reason)
      ).build();
  }
}
@RestController
public class CaffeineController {

  private final Cache<String, Object> cache;

  @Autowired
  public CaffeineController(Cache<String, Object> cache) {
    this.cache = cache;
  }

  @PostMapping("/add")
  public Result add(String key, String val) {
    cache.put(key, val);
    return Result.success("add success");
  }

  @GetMapping
  public Result get(String key) {
    return Result.success((String) cache.getIfPresent(key));
  }
}

无论如何调用, get()总是返回 null, 最后找到问题所在, 是配置的 Bean 有问题。
在构造 Bean 时添加了参数.weakKeys()[1], 使 key 成为弱引用变量, 被垃圾回收器发现之后就会被回收掉
key被回收掉之后获取缓存时要使用==(比较地址)而不是equals()(比较值)来获取缓存[2]
去掉.weakKeys()之后, 可以成功取得缓存!

参考

[1] getIfPresent caffeine return null, https://stackoverflow.com/questions/63068085/getifpresent-caffeine-return-null
[2] Caffeine 缓存, xiaolyuh, https://www.jianshu.com/p/9a80c662dac4

Caffeine getIfPresent()返回 null 问题

标签:垃圾   msi   sys   get   overflow   write   add   max   垃圾回收器   

原文地址:https://www.cnblogs.com/xfk1999/p/caffeine-returns-null.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!