用例:我有这段代码效果很好
(require '[clojure.core.cache :as cache])
(require '[clojure.core.memoize :as memo])
(import 'clojure.core.memoize.PluggableMemoization)
(defn lru-ttl-cache [base threshold ttl]
(-> base
(cache/lru-cache-factory :threshold threshold)
(cache/ttl-cache-factory :ttl ttl)))
(defn lru-ttl-memo
([f base threshold ttl]
(memo/build-memoizer
#(PluggableMemoization. %1 (lru-ttl-cache %4 %2 %3))
f
threshold
ttl
(@#'memo/derefable-seed base))))
但这依赖于一个私有变量。这应该真正是公开的,这样客户可以更容易地提供他们自己的实现。
顺便说一句,非常好的库。我爱在 Clojure 生态系统中工作。