Speaking PostgreSQL
· 6 min read
What if you could point psql at a lattice database and just... query it? No custom clients. No special drivers. Just psql -h localhost -p 5432 and you're in.
That was the goal. Here's how we got there.
SQL database capabilities on Convex lattice
View All TagsWhat if you could point psql at a lattice database and just... query it? No custom clients. No special drivers. Just psql -h localhost -p 5432 and you're in.
That was the goal. Here's how we got there.
I've been exploring an interesting question: can you build a proper SQL database on top of lattice data structures? Not a thin wrapper, but something that actually understands both worlds — SQL semantics and CRDT-style merge operations.
Turns out you can. Here's what I learned.