Accesso alla storia di un "ref" a Clojure


9

La documentazione per ref mostra un'opzione: max-history e afferma che "i ref accumulano la storia in modo dinamico quando necessario per gestire le richieste di lettura". Vedo che esiste una cronologia nel REPL, ma non vedo come trovare i valori precedenti di un riferimento:

user=> (def the-world (ref "hello" :min-history 10))
#'user/the-world
user=> (do
          (dosync (ref-set the-world "better"))
          @the-world)
"better"
user=> (let [exclamator (fn [x] (str x "!"))]
          (dosync
           (alter the-world exclamator)
           (alter the-world exclamator)
           (alter the-world exclamator))
          @the-world)
"better!!!"
user=> (ref-history-count the-world)
2

Presumibilmente il mondo ha avuto i valori "ciao", "migliore" e "migliore !!!". Come posso accedere a quella cronologia?

Se non è possibile accedere a tale cronologia, esiste un tipo di dati che mantiene una cronologia dei suoi valori che possono essere interrogati in seguito? O è per questo che è stato creato il database anatomico?

Risposte:


7

Credo: min-history e: max-history si riferiscono solo alla cronologia di un ref durante una transazione.

Tuttavia, ecco un modo per farlo con un atomo e un osservatore:

user> (def the-world (ref "hello"))
#'user/the-world
user> (def history-of-the-world (atom [@the-world]))
#'user/history-of-the-world
user> history-of-the-world
#<Atom@6ef167bb: ["hello"]>
user> (add-watch the-world :historian
                 (fn [key world-ref old-state new-state]
                   (if (not= old-state new-state)
                     (swap! history-of-the-world conj new-state))))
#<Ref@47a2101a: "hello">
user> (do
        (dosync (ref-set the-world "better"))
        @the-world)
"better"      
user> (let [exclamator (fn [x] (str x  "!"))]
        (dosync
          (alter the-world exclamator)
          (alter the-world exclamator)
          (alter the-world exclamator))
        @the-world)
"better!!!"
user> @history-of-the-world
["hello" "better" "better!!!"]

Funzionerà allo stesso modo anche con gli atomi?
Yazz.com
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.