2024 Clojure状态调查中分享您的想法!

欢迎!请查看关于页面以了解更多工作原理。

0
core.cache

Makes a weak-cache-factory available. Entries will be eagerly collected by the jvm, rather than only when there's memory pressure.
实现相当简单。我将SoftCache更改为NonStrongCache,并添加了一个额外的记录参数,这是一个用于创建引用的函数
使用的。
参见https://github.com/pnf/core.cache/compare/clojure:master...master

2个答案

0

评论者:seancorfield

这听起来很有趣。出于向后兼容性的原因,我不想更改任何公共名称,但我愿意为添加NonStrongCache以及以它为依据重写SoftCache以及添加WeakCache的补丁。

0
参考:https://clojure.atlassian.net/browse/CCACHE-35(由alexis reported)
...