russellromney/honker
russellromney/honker “Postgres NOTIFY/LISTEN semantics” for SQLite, implemented as a Rust SQLite extension and various language bindings to help make use of it. The design of this looks very solid. It lets you write Python code for queues that looks like this: import honker db = honker.open(“app.db”) emails = db.queue(“emails”) emails.enqueue({“to”: “alice@example.com”}) # Consume (in a worker process) async for job in emails.claim(“worker-1”): send(job.payload) job.ack() And Kafka-style durable streams like this: stream = db.stream(“user-events”) with db.transaction() as tx: tx.execute(“UPDATE […]