Note: This code is currently a work in progress. Do not use it for anything serious yet. It is missing important features and it contains bugs.
This repository contains a high performance rust list CRDT. This is a special data type which supports concurrent editing of lists or strings (text documents) by multiple users in a P2P network without needing a centralized server.
For much more detail about how this library works, see the talk I gave on this library at a recent braid user meetings.
For now there is only a list implementation here. At some point I'd like to add other data structures (objects, tuples, etc). (Hence the name.)
This project was initially created as a prototype to see how fast a well optimized CRDT could be made to go. The answer is really fast - faster than other similar libraries. This library is currently in the process of being expanded into a fast, feature rich CRDT in its own right.
This library is also designed to be interoperable with positional updates, which will allow simple peers to interact with the data structure via an OT system. (WIP)
Each client / device has a unique ID. Each character typed or deleted on
each device is assigned an incrementing sequence number (starting at 0).
Each character in the document can thus be uniquely identified by the
tuple of (client ID, sequence number)
. This allows any location in the
document to be uniquely named.
The internal data structures are designed to optimize two main operations:
Actually inserting text into a rope (or something) is reasonably easy, and ropey and xi-rope both seem very high performance. So in this library I'm worrying about the P2P operation boundary.
Internally, each client ID is mapped to a local "order" integer. These integers are never sent over the wire, so it doesn't matter if they aren't common between peers.
Then we have two main data structures internally: