(no title)
adamzwasserman | 1 month ago
I needed SQLite as a central system DB but couldn't live with single-writer. So I built a facade that can target SQLite, Postgres, or Turso's Rust rewrite through one API. The useful part: mirroring. The facade writes to two backends simultaneously so I can diff SQLite vs Turso behavior and catch divergences before production. When something differs, I either file upstream or add an equalizing shim. Concurrent writes already working is a reasonable definition of success. It's why I'm using it.
pseudohadamard|1 month ago
adamzwasserman|1 month ago
Who knows, maybe 5 years from now, you will say to yourself: that crazy wasn't so crazy after all!