▲ | aboodman 4 days ago | |||||||||||||||||||||||||
Hi replicache/zero guy here > Zero (and I believe Replicache as well) layer their own SQL-like semantics on top of an arbitrary KV store, much like the layering of SQLite-over-IndexedDB discussed Replicache exposes only a kv interface. Zero does expose a SQL-like interface. > I believe they are storing binary byte pages in the underlying KV store and each page contains data for one-or-more Replicache/Zero records. The pages are JSON values not binary encoded, but that's an impl detail. At a big picture, you're right that both Replicache and Zero aggregate many values into pages that are stored in IDB (or SQLite in React Native). > On the subject of "keep whole thing in memory", this is what Zero does for its instant performance, and why they suggest limiting your working set / data desired at app boot to ~40MB, although I can't find a reference for this. Zero is smart though and will pick the 40MB for you though. Hopefully Zero folks come by and corrects me if I'm wrong. Replicache and Zero are a bit different here. Replicache keeps only up to 64MB in memory. It uses an LRU cache to manage this. The rest is paged in and out of IDB. This ended up being a really big perf cliff because bigger applications would thrash against this limit. In Zero, we just keep the entire client datastore in memory. Basically we use IDB/SQLite as a backup/restore target. We don't page in and out of it. This might sound worse, but the difference is Zero's query-driven sync. Queries automatically fallback to the server and sync. So the whole model is different. You don't sync everything, you just sync what you need. From some upcoming docs: | ||||||||||||||||||||||||||
▲ | local_surfer 4 days ago | parent | next [-] | |||||||||||||||||||||||||
I really like Zero’s approach: it feels very much like Triplit, including many of its features like query-based smart caching. However, what holds me back from using it is that, unlike Triplit, Zero currently lacks support for offline modifications, which must be a major obstacle for a truly local‑first library. | ||||||||||||||||||||||||||
| ||||||||||||||||||||||||||
▲ | jitl 4 days ago | parent | prev [-] | |||||||||||||||||||||||||
Notion screenshot ;) | ||||||||||||||||||||||||||
|