3/22/2026 at 1:06:54 PM
I find it fascinating when different people independently arrive at the same architecture when working on a hard problem like this. In my company we built our offline-first apps with PowerSync, which has the same idea of optimistic local changes while waiting for the central server to acknowledge the definitive changes. In PowerSync's case, the sync engine reads Postgres replication logs directly.by giovannibonetti
3/22/2026 at 1:11:35 PM
Yeah, I'm surprised this pattern doesn't have a more general name.I've also used it to synchronize content for local multi-window editing applications: each window is its own process but routes through one "coordination" process to ensure consistent ordering.
Easily solves some cross-process concurrency issues.
by tyleo
3/22/2026 at 4:19:21 PM
It does have a name:by munificent
3/22/2026 at 5:49:28 PM
It's not quite the same since we aren't doing any sort of interpolation. I would acknowledge it's a similar idea though. Perhaps the similarity is one reason we came to this solution as a game studio.by tyleo
3/22/2026 at 2:26:56 PM
In this case it's just a (transaction/commit) log. Very common in distributed systems, databases, and filesystems.by Rohansi