作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在我们的应用程序中基于weakValues使用了google guava,如下所示。
CacheBuilder
.newBuilder()
.weakValues()
.concurrencyLevel(Runtime.getRuntime().availableProcessors())
.removalListener(removalListener)
.build(cacheLoader);
删除监听器不会在缓存弱值被删除后立即调用。我必须基于此清除 native 资源,因此我的程序结束时不会在 native 端释放内存。这是一个已知问题吗?
最佳答案
在 Google Guava docs ,它说如下:
Caches built with CacheBuilder do not perform cleanup and evict values "automatically," or instantly after a value expires, or anything of the sort. Instead, it performs small amounts of maintenance during write operations, or during occasional read operations if writes are rare.
还解释了他们做出此决定的原因以及可用的替代方案。
关于java - Google Guava Cache 引用值较弱,未给出驱逐通知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32660230/
我是一名优秀的程序员,十分优秀!