Honker
Postgres NOTIFY/LISTEN semantics for SQLite — no broker needed
The Panel's Take
Honker is a Rust-built SQLite extension that brings Postgres-style NOTIFY/LISTEN semantics to SQLite without any external broker. It adds cross-process notifications, durable pub/sub channels, task queues with retries and priority, and crontab-style scheduling — all living inside your existing SQLite file. Single-digit millisecond delivery via WAL-file watching instead of polling. The core trick: rather than polling the database on an interval, Honker watches SQLite's Write-Ahead Log (WAL) file with stat(2) calls. When a write lands, listeners wake up immediately. This gives push semantics without Redis, RabbitMQ, or any additional infrastructure. Business logic writes and task enqueues are atomic because they're in the same database. Honker ships as a loadable SQLite extension plus language packages for Python, Node.js, Rust, Go, Ruby, Bun, Elixir, and C++. It's experimental and the API may change, but it's addressing a real pain point: SQLite projects that outgrow simple reads/writes inevitably reach for external messaging, and Honker defers that moment significantly.
Share this verdict
Honker verdict: SHIP 🚀 3 ships · 1 skip from the expert panel Full review: shiporskip.io/tool/honker-sqlite-notify-listen-pubsub-task-queue-rust-2026
Weekly AI Tool Verdicts
Get the next verdict in your inbox
7 critics review a new AI tool every day. Weekly digest — free.
Compare Honker with Others
Embed this verdict
Tool makers can add a live ShipOrSkip badge to their site. Badge loads track impressions; clicks route back to this review.
<a href="https://shiporskip.io/api/badge-click/honker-sqlite-notify-listen-pubsub-task-queue-rust-2026" target="_blank" rel="noopener"><img src="https://shiporskip.io/api/badge/honker-sqlite-notify-listen-pubsub-task-queue-rust-2026" alt="Honker Ship verdict on ShipOrSkip" width="360" height="90" /></a>[](https://shiporskip.io/api/badge-click/honker-sqlite-notify-listen-pubsub-task-queue-rust-2026)<iframe src="https://shiporskip.io/embed/honker-sqlite-notify-listen-pubsub-task-queue-rust-2026" title="Honker ShipOrSkip verdict" width="360" height="260" style="border:0;border-radius:16px;max-width:100%;" loading="lazy"></iframe>The reviews
“The WAL-watching approach is elegant — no daemon, no polling loop, no external dependency. Having task queues, pub/sub, and scheduled jobs all in one SQLite file that any language can load is a huge win for projects that want operational simplicity.”
“Marked as experimental with an unstable API — do not use this in production today. SQLite's WAL mode has edge cases around concurrent writes and database corruption that get worse with more processes watching it. The use cases overlap significantly with just using Postgres directly.”
“SQLite is winning the database war for solo and small-team projects. The missing piece has always been eventing and queuing without spinning up Redis. Honker's approach could become standard infrastructure for the next generation of SQLite-native applications.”
“Less relevant for creative work directly, but for indie SaaS builders who want a simple backend without ops overhead, this is the kind of building block that lets you ship features instead of managing infrastructure.”