Honker: A SQLite extension adding Postgres-style pub/sub, queues, and event streams
By
ferriswil
Fresh out the oven, still warm. Top of the tray.
Summary
Honker is a SQLite loadable extension that adds PostgreSQL-style NOTIFY/LISTEN semantics to SQLite, enabling durable pub/sub messaging, task queues, and event streams without requiring client polling or a separate daemon/broker. It achieves cross-process wake latency of ~0.7ms p50 on M-series laptops and works as a plain SQLite extension accessible from any language that can load it. Bindings exist for Python, Node, Rust, Go, Ruby, Bun, and Elixir, all sharing a single on-disk format. The project highlights that SQLite is increasingly used in production systems like Bluesky's PDS, Fly's LiteFS, and Turso.
Key quotes
· 5 pulledhonker adds Postgres-style NOTIFY/LISTEN semantics to SQLite, with a durable pub/sub, task queue, and event streams on the side, without client polling or a daemon/broker.
Cross-process wake latency is ~0.7 ms p50 on an M-series laptop.
In its basic form it's a plain SQLite loadable extension, so any language that can SELECT load_extension('honker_ext') gets the same queue, streams, and notifications on the same file.
Bindings for Python, Node, Rust, Go, Ruby, Bun, and Elixir share one on-disk format.
SQLite is backing real work now — Bluesky's PDS, Fly's LiteFS, Turso, weekend proj
You might also wanna read
Netflix engineer's open-source tool cuts AI token usage by up to 90%
Netflix senior engineer Tejas Chopra created software called "Project Headroom" that prunes redundant tokens from AI agent instructions befo
Copyparty: A Lightweight File Server That Runs as a Single Python Script
Copyparty is a lightweight, full-featured file server that runs as a single Python script, making it extremely easy to set up without needin
MotherDuck's AI lead explains how the startup commercializes DuckDB without forking the open-source database
MotherDuck's AI lead Till Döhmen discusses how the startup commercializes the open-source DuckDB analytical database without forking it. At
bit.ly·1d agoMotherDuck's AI lead explains how the startup commercializes DuckDB without forking the open-source database
MotherDuck's AI lead Till Döhmen discusses how the startup commercializes the open-source DuckDB analytical database without forking it. At
bit.ly·1d agoResearcher's "ADHD" tool for Claude Code claims 2x improvement; experts call for more evidence
Solo researcher Udit Akhouri released a third-party Agent SDK tool called "ADHD" for Claude Code on Reddit, claiming it makes the coding age
bit.ly·1d agoReactOS open-source Windows NT clone reaches ARM64 boot milestone on Raspberry Pi 5
ReactOS, the open-source project aiming to recreate Windows NT, has achieved a new milestone by booting on ARM64 architecture. The experimen
