11 comments

  • jmull3 hours ago
    No mention of conflict resolution? I suspect it's far too naive to be useful for anything real.
    • pettijohn5 minutes ago
      <a href="https:&#x2F;&#x2F;github.com&#x2F;syncular&#x2F;syncular&#x2F;blob&#x2F;0ff4fed6b7e538293e654b9d60d83b03047d2da8&#x2F;apps&#x2F;docs&#x2F;src&#x2F;content&#x2F;concepts-conflicts.md" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;syncular&#x2F;syncular&#x2F;blob&#x2F;0ff4fed6b7e538293e...</a>
    • quambo2 hours ago
      [flagged]
  • janandonly4 hours ago
    I wish there was an established way to build local first software with a robust syncing in the background, either P2P or to a server.<p>I feel projects like this for local first and projects like Iroh for connectivity over NAT and through firewalls need to come together more.<p>It would be could to have a drop in framework for this.
    • abirch2 hours ago
      Have you looked at <a href="https:&#x2F;&#x2F;duckdb.org&#x2F;quack&#x2F;" rel="nofollow">https:&#x2F;&#x2F;duckdb.org&#x2F;quack&#x2F;</a> ?
    • satvikpendem3 hours ago
      Loro along with their protocol crate works great. Automerge has something similar.
    • quambo2 hours ago
      [dead]
  • satvikpendem3 hours ago
    Looks interesting, was looking for something like this as currently for Flutter I use Loro via flutter_rust_bridge as the CRDT data store, but it&#x27;s not SQL so some things like big queries are annoying. How are you handling CRDTs in a SQL database? I thought those were notoriously hard as relational wasn&#x27;t built for CRDT style syncing?
    • quambo2 hours ago
      That’s kinda the tension I wanted to avoid. I’m not trying to make the whole SQL database a CRDT.<p>CRDTs are opt-in per column. A row can keep normal, queryable fields like project_id, status, and title, while one doc column stores Yjs&#x2F;yrs bytes. Concurrent edits to that column are merged by the server; normal columns still use versions and explicit conflicts. Flutter uses yrs through the shared Rust core.<p>The trade-off is that SQL can’t query inside the CRDT document. Anything you need for filtering, joins, or aggregates should remain an ordinary column. That boundary gives you relational queries without giving up CRDTs where they’re really useful.<p>I’d be interested in your feedback on the Flutter client. I chose a very small C ABI—five hand-written dart:ffi bindings into the Rust core, rather than generating a large FFI surface. The app-specific schema, row types, subscriptions, and typed SQL&#x2F;SYQL queries are generated from the shared schema IR using syncular generate. I’d love to hear how that feels compared with your flutter_rust_bridge setup.<p>More detail: <a href="https:&#x2F;&#x2F;syncular.dev&#x2F;concepts-crdt&#x2F;" rel="nofollow">https:&#x2F;&#x2F;syncular.dev&#x2F;concepts-crdt&#x2F;</a> <a href="https:&#x2F;&#x2F;syncular.dev&#x2F;platform-flutter&#x2F;" rel="nofollow">https:&#x2F;&#x2F;syncular.dev&#x2F;platform-flutter&#x2F;</a>
      • satvikpendem17 minutes ago
        Got it. Many things I do need to be queryable though, like for example if I&#x27;m making a to-do list app the todos need to be queryable, so not sure your approach solves much for my use cases. For the Flutter side it&#x27;s not too bad using FRB, I&#x27;d say AI takes care of a lot of the details.
  • kello5 hours ago
    This is cool. Reminds of Lotus Notes. In a strange way a concept that felt &quot;outdated&quot; is something that I would love to be the default behavior for many apps today.
    • quambo5 hours ago
      It’s great to see apps being shipped with offline first (and flawless syncing as an optional feature) from ground up, sad to see many modern notes apps like notion or capacities treating offline as afterthought. But alas, it’s still a non trivial nut to crack.<p>Hope one day offline first will be a default and a solved problem.
      • chrisweekly3 hours ago
        Agreed. Also, pretty confident this is one of the reasons Obsidian is able to compete (and win) against Notion despite the huge difference in capitalization.
  • fukaiall4 hours ago
    It’s a bit weird to see every comment here talks about apps she or he has built but never really give a shit about this app itself.
  • nerder925 hours ago
    In which way this is different from PowerSync?
    • quambo4 hours ago
      Both use local SQLite and keep the backend authoritative. The main difference is that PowerSync mostly handles downstream replication and gives you an upload queue; your API still owns the write semantics. Syncular specifies the whole round trip. Durable commits, auth scopes, conflicts, replay, revocation and bootstrap. Syncular also goes further up the stack: schemas plus SQL&#x2F;SYQL generate typed queries for TS, Swift, Kotlin, Dart and Rust, and blobs, CRDT&#x2F;encrypted columns and windowed sync are built into the protocol.<p>In my separate benchmark harness, Syncular currently does considerably better than the tested PowerSync setup. For example, 100k bootstrap is ~0.57s vs ~6.5s and offline replay ~35ms vs ~5.1s. Those are early results from one environment, though, not a universal claim (<a href="https:&#x2F;&#x2F;github.com&#x2F;bkniffler&#x2F;offline-sync-bench" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;bkniffler&#x2F;offline-sync-bench</a>).<p>I&#x27;ve used PowerSync in the past with a huge initial bootstrap sync and was very frustrated by the performance back then (ca 1 year ago), which was one of the reasons to create my own library.<p>PowerSync is much more mature today obviously and still a great and proven tool.
  • dools5 hours ago
    Interesting! I wrote something similar for my app recently, it was the first thing I coded using LLMs.
    • quambo5 hours ago
      Nice! Would recommend to decouple as much as possible and have tons of testing, every issue thats catched before having to go to the length of debugging client side issues is gonna save some sleep. Have been there, learned the hard way..<p>Whats your app?
      • dools5 hours ago
        Yeah it was a deceptively complicated issue. I’m not sure if my implementation is as comprehensive, but it sounds similar: optimistic local writes, outbound queue, server as source of truth, each client has local SQLite.<p>The issue I found most difficult architecturally was how to deal with staying responsive on first sign in with a large DB. I ended up with a system I called “materialisation on demand” where it will search the server and download only those rows ahead of time.<p>EDIT: I also ended up using multiple local databases to ensure responsive writes during heavy synching activity.<p>The app is <a href="https:&#x2F;&#x2F;www.benko.app&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.benko.app&#x2F;</a> it’s available on iOS, android, Mac and windows.
  • crefiz3 hours ago
    Be warned, AI Slop ahead
  • jartan200226 minutes ago
    [flagged]
  • quambo6 hours ago
    Hi HN! I’ve been circling this problem for a long time.<p>In 2019 I built an offline-first datastore called debe. It used CRDTs and multi-master replication and never became something I could confidently ship. It did teach me that convergence is only a small part of sync. The difficult parts are durable writes, authorization changes, lost acknowledgements, schema upgrades, bounded bootstrap, and explaining what happened after something fails.<p>I eventually came back to the problem and built Syncular over the last year.<p>Every client has a real SQLite database: sqlite-wasm on OPFS in the browser and native SQLite elsewhere. Writes apply locally and enter a durable outbox in the same transaction. A server-authoritative commit log validates and orders them, using explicit scopes resolved inside the application backend.<p>The protocol is written down independently of the implementations. SSP2 is currently a draft, with canonical binary encoding and golden byte vectors. There are independent TypeScript and Rust client cores, both run against the same 95-scenario conformance catalog. The Rust core is exposed through Swift, Kotlin, Flutter, React Native, Tauri, Rust, and a small C API.<p>It also includes realtime WebSocket sync, resumable bootstrap segments, explicit conflict evidence, authorization revocation and local purge, windowed replicas, blobs, optional CRDT columns, per-column encryption, and typesafe generated queries for five languages. Important boundaries: it is pre-1.0, self-hosted, and there is no managed service or peer-to-peer mode. Native packaging maturity still varies by ecosystem.<p>Let me know what you think, I&#x27;m happy about feedback!<p>Demo: <a href="https:&#x2F;&#x2F;demo.syncular.dev" rel="nofollow">https:&#x2F;&#x2F;demo.syncular.dev</a> Protocol: <a href="https:&#x2F;&#x2F;github.com&#x2F;syncular&#x2F;syncular&#x2F;blob&#x2F;main&#x2F;docs&#x2F;SPEC.md" rel="nofollow">https:&#x2F;&#x2F;github.com&#x2F;syncular&#x2F;syncular&#x2F;blob&#x2F;main&#x2F;docs&#x2F;SPEC.md</a> Background: <a href="https:&#x2F;&#x2F;syncular.dev&#x2F;blog&#x2F;offline-first-writes&#x2F;" rel="nofollow">https:&#x2F;&#x2F;syncular.dev&#x2F;blog&#x2F;offline-first-writes&#x2F;</a> Docs: <a href="https:&#x2F;&#x2F;syncular.dev&#x2F;" rel="nofollow">https:&#x2F;&#x2F;syncular.dev&#x2F;</a>
    • earthnail4 hours ago
      There was a local-first conv just a few weeks ago in Berlin; if you&#x27;re not yet part of that community I suggest reaching out. <a href="https:&#x2F;&#x2F;www.localfirst.fm&#x2F;" rel="nofollow">https:&#x2F;&#x2F;www.localfirst.fm&#x2F;</a> for example, or <a href="https:&#x2F;&#x2F;lofi.so&#x2F;" rel="nofollow">https:&#x2F;&#x2F;lofi.so&#x2F;</a>
      • quambo4 hours ago
        Thanks for pointing me there! Posted to their discord, but seems not so active.
    • cpursley2 hours ago
      Very interesting, have you experimented with getting it working with Crux in Rust?