cachapa / crdt

Dart implementation of Conflict-free Replicated Data Types (CRDTs)
https://pub.dev/packages/crdt
Apache License 2.0
159 stars 20 forks source link

Question about CRDT Implementation #8

Closed fnaith closed 2 years ago

fnaith commented 2 years ago

What kind of crdt this repository implement? Does it support json type like Automerge ?

cachapa commented 2 years ago

I'm not sure what you mean by what kind of crdt. The implementation follows closely what is described in the links in this project's readme.

It doesn't explicitly support Automerge out of the box. The crdt handles conflict resolution itself and even has helper methods to import/export json payloads.

fnaith commented 2 years ago

Thanks, I should study the links more.