Skip to content

Antidote CRDT upgrade

Latest
Compare
Choose a tag to compare
@peterzeller peterzeller released this 16 Apr 12:56
· 11 commits to master since this release

This release includes some incompatibilities caused by changes in Antidote.

  • Removed integer CRDT

    Some uses can be replaced by a counter, multi-value-register, or last-writer-wins -- depending on your use case. If you need the full functionality of the integer, you will have to use a counter together with a multi-value-register

  • Removed add-wins map

    You can replace it with the remove-resets-map (rrmap) in your code. The only difference is, that it was possible to delete non-resettable CRDTs from an add-wins-map and that the add-wins map could distinguish between empty entries (e.g. empty set) and nonexisting entries

  • Added support for flag CRDTs