鉴于STM拥有refs,agent等10个值的历史记录,可以读取这些值吗?
原因是,我正在更新一批代理商,我需要保留价值历史记录。如果STM已经保留它们,我宁愿只使用它们。我在API中找不到看起来像是从STM历史中读取值的函数,所以我猜不是,我也找不到java源代码中的任何方法,但也许我看起来不对。
答案 0 :(得分:9)
您无法直接访问值的stm历史记录。但您可以使用add-watch来记录值的历史记录:
(def a-history (ref []))
(def a (agent 0))
(add-watch a :my-history
(fn [key ref old new] (alter a-history conj old)))
每次a
更新(stm事务提交)时,旧值将合并到a-history
中保存的序列中。
如果您想要访问所有中间值,即使对于回滚事务,您也可以在事务期间将值发送给代理:
(def r-history (agent [])
(def r (ref 0))
(dosync (alter r
(fn [new-val]
(send r-history conj new-val) ;; record potential new value
(inc r)))) ;; update ref as you like
交易完成后,代理r-history
的所有更改都将被执行。