Talks
The conference is on Nov 12, 2025. The venue is The Lodge at The Regency Ballroom located at 1290 Sutter St, San Francisco, CA.
- Check in and coffee
- Welcome James Arthur
- Teaching models to collaborate Lee Byron
- Synchronizing data across computation Frank McSherry
- Conflict resolution x Notion blocks Angelique Nehmzow
- Break
- Why physical replication still matters Carl Sverre
- CRDTs solved conflicts, not sync Adam Fish
- Can sync be network-optional? Brendan O'Brien
- How to design a sync-first database James Cowling
- Lunch
- A tale of two sync engines Arushi Bandi
- Always be pair programming swyx
- SQLite persistence on the web Conrad Hofmeyr
- sync(sync) Aaron Boodman, Johannes Schickling, James Cowling, Kyle Mathews
- Break
- Oops, my sync engine has become a database Anselm Eickhoff
- Your data, your rules & the way to share them Irakli Gozalishvili, Chris Joel
- Building AI agentic apps in 2025 Sunil Pai
- Local-first software: pragmatism vs idealism Adam Wiggins
- Post-event mingling
CRDTs solved conflicts, not sync
Nov 12 11:40 - 12:00
The sync community has obsessed over CRDTs and conflict resolution for years. But conflict-free replication is just table stakes—it solves merge conflicts, not correctness under queries. The real challenge isn't making data converge; it's making queries stay correct across unreliable and inconsistent networks.Most CRDT systems retransmit entire objects or documents on every change. This breaks down at scale, especially in bandwidth-constrained environments where deskless workers operate. True resilience requires rethinking propagation entirely: property-level diffs, query-based synchronization, and incremental re-evaluation that keeps clients consistent without transferring full datasets.This technical deep dive explores what comes after conflict-free replication:
- Why CRDTs solve conflicts but not query consistency at scale
- Property-level diffs and query-based propagation vs. document retransmission
- Incremental query re-evaluation: keeping clients correct without the full dataset
- Multihop, multiplexed replication for maintaining query liveness in mesh topologies
- Distributed access control in query-consistent systems
We'll examine the architectural shift from "synchronization as an operation" to systems that simply converge—and why this matters for production deployments where networks are unreliable and queries need to stay correct.
