Settings

Theme

In-process reimplementation of PostgreSQL backed by SQLite-compatible storage

github.com

5 points by charlieirish 19 days ago · 3 comments

Reader

gianpaj 19 days ago

From the Turso CEO

> What if we could run Postgres as a single file, and take advantage of the best SQLite has to offer?

Today I am announcing pg-micro, a crazy experiment I've been undertaking to make this happen.

pg-micro is different from other approaches because it is fully local, and expected to be fast: there is no concurrency limitation and no statement translation.

[...]

https://x.com/glcst/status/2037254698898432278

swaminarayan 19 days ago

Really interesting design — especially using SQLite-compatible storage with a PostgreSQL interface.

I'm working on SNKV, which explores a different approach: skipping the SQL layer entirely and focusing on a simple key-value interface.

It works closer to the storage layer (b-tree / WAL / pager concepts), aiming for a lightweight and minimal design, while supporting multi-process access.

Curious how you think about the tradeoff between SQL flexibility and a simpler KV interface.

https://github.com/hash-anu/snkv

emschwartz 19 days ago

Seems kind of crazy, but I like it

Keyboard Shortcuts

j
Next item
k
Previous item
o / Enter
Open selected item
?
Show this help
Esc
Close modal / clear selection