用 Java 实现回写式缓存
我试图实现一个回写式缓存。我正在尝试使用软引用,但在执行事后写回时遇到麻烦,因为引用在添加到 gcQueue 之前已被清除,因此我无法访问引用对象。
解决方案?
I trying to implement a write-back cache. I'm trying to use soft referenes, but I'm having troubles performing the post-mortum write-back because the reference is cleared before it's added to the gcQueue and thus I don't have access to the referent object.
Solutions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试 Guava Mapmaker。
示例:
关于 MapMaker 的 SO 问题:
替代选项:
使用Supplier类的memoizeWithExpiration 这也是番石榴库的一部分。
You can try Guava's Mapmaker.
Example:
SO Questions on MapMaker :
Alternative option :
Use Supplier class's memoizeWithExpiration which is also part of guava library.