Skip to content

elleFlorio/crdt

Folders and files

NameName
Last commit message
Last commit date

Latest commit

2fc03c2 · May 23, 2021

History

2 Commits
May 23, 2021
May 23, 2021
May 23, 2021
May 23, 2021
May 23, 2021
May 23, 2021
May 23, 2021
May 23, 2021
May 23, 2021
May 23, 2021
May 23, 2021
May 23, 2021
May 23, 2021
May 23, 2021
May 23, 2021

Repository files navigation

CRDT

Go implementation of some CRDTs

WIP

This is still a work in progress in the early stage. A lot can (and probably) will change. Currently, the implemented CRDTs are:

  • GCounter: grow only counter
  • GSet: grow only set
  • Counter: a regular counter (increase and decrease)

The next in my pipeline are:

  • Set: a regular set
  • Register: a register (key-value pair)
  • Dictionary: map of key-value pair

A How-to will follow as soon as I am satisfied with the initial implementation.