CRDTs - Conflict-free Replicated Data Types:
(use crdt.handoff-counter)
(let [c1 (init :id1 tier)
c2 (init :id2 tier)
c1 (incr c1)
c2 (incr c2)
c1 (join c1 c2)
c2 (join c2 c1)
; ...]
(value c1))
Copyright (C) 2013 Paulo Sérgio Almeida
Distributed under the Eclipse Public License, the same as Clojure.
11 commits
Clojure
100.0%
CRDTs - Conflict-free Replicated Data Types:
(use crdt.handoff-counter)
(let [c1 (init :id1 tier)
c2 (init :id2 tier)
c1 (incr c1)
c2 (incr c2)
c1 (join c1 c2)
c2 (join c2 c1)
; ...]
(value c1))
Copyright (C) 2013 Paulo Sérgio Almeida
Distributed under the Eclipse Public License, the same as Clojure.
11 commits
Clojure
100.0%