-
Replaceable events in general are bad, but especially lists, which can have race conditions when used from multiple clients. p2panda has an excellent design which accounts for this.
staab updated
3 months ago
-
Idea of storing CRDTs into triple store has came up, specifically what if we just stored those as blob values ?
-
-
This is more a bookmark of what I'm studying personally atm:
https://mattweidner.com/2023/09/26/crdt-survey-2.html#lists-and-text-editing
> This definition still gives us some freedom in choosing
-
[Convergent and Commutative Replicated Data Types](http://hal.inria.fr/docs/00/55/55/88/PDF/techreport.pdf) (Shapiro et al.)
From #40.
-
Seems like the concept of Conflict-free Replicated Data Types (https://github.com/jboner/akka-crdt) could be useful here. Some links:
- http://hal.upmc.fr/docs/00/55/55/88/PDF/techreport.pdf
- http://…
-
# Delta State Replicated Data Types
Paper: https://arxiv.org/pdf/1603.01529.pdf
> Conflict-Free Replicated Data Types (CRDTs) are distributed datatypes that allow different replicas of a distrib…
-
I'm working on a mobile Nerves app that will experience periods of disconnection. Disconnected users will create/update/delete records, then re-sync upon connection.
I think this would be a good u…
andyl updated
4 years ago
-
Sucredb would be a great fit for those structures, even if it probably can't support all commands reasonably.
- [x] Sets
- [ ] Sorted Sets
- [x] Counters
- [x] Hash
- [ ] HLL
- [ ] Lists
-
Today the RGB module works based in unit of work concept, or that, each operation can be valid only when everything works, like transaction in database (commit and rollback operations). This approach …