6 ms·
What kind of consistency models [0] do Offline-first databases like RxDB and PouchDB have? I was thinking read uncommitted, but they might allow dirty writes.
by peterthehacker 5y ago
What kind of consistency models [0] do Offline-first databases like RxDB and PouchDB have?
I was thinking read uncommitted, but they might allow dirty writes. Maybe there’s some CRDTs under the hood… I can’t find any documentation on consistency though, anyone here know?
[0] https://jepsen.io/consistency https://jepsen.io/consistency
- genewitch 5y agoIs the reason for all of these sorts of comments some sort of "never lose data" quality assurance? There's consistency, write first, latency, replication, and then acronyms. I just implement hardware and OS stuff, but I like the DB people to be happy. What am I missing?
- janl 5y agoCouchDB docs have you covered: https://docs.couchdb.org/en/stable/replication/intro.html https://docs.couchdb.org/en/stable/replication/intro.html
- peterthehacker 5y agoThanks! Very cool. I haven’t used couchdb in prod. I’ll read into this more.