Top
Best
New

Posted by ferriswil 16 hours ago

Honker – Durable queues, streams, pub/sub, and cron scheduler in a SQLite file(honker.dev)
192 points | 52 commentspage 2
opiniateddev 8 hours ago|
Why not just use https://github.com/conductor-oss/python-sdk provide durability, distributed and orchestration.
kweiza 8 hours ago||
On edge this misses Durable Objects + alarms — same primitives, no polling, no Redis to skip in the first place.
ghm2180 7 hours ago||
Can this work with lightstream?
maxdo 11 hours ago||
Almost feels like someone is trying to joke about similar postgres application .

To make it look even more absurd . SQLite is not concurrent and you’ll have tons of problems using it practically .

deferredgrant 11 hours ago||
This seems especially appealing in the awkward middle: too serious for in-memory queues, not big enough to justify Kafka-shaped machinery.
neocron 7 hours ago||
No maven package for java? Guess this isn't a serious project
andrewstuart 11 hours ago||
Suggestion for the author wind back the polling to once a second when nothing is happening.
andrewstuart 11 hours ago||
I can’t see any benchmarks or performance stats.

I’d like to see messages per second.

canadiantim 11 hours ago||
Could this work with Turso, the SQLite rust rewrite?
russellthehippo 8 hours ago|
Author here. Yeah doesn’t depend on the underlying db if it speaks SQLite.
enduku 8 hours ago||
I think this is interesting too sqlite a as the coordination boundary: business state, queue state, stream offsets, retries, and acks all sharing one transactional substrate. The 1ms polling is getting a lot of weight in the thread though :)
Jaden688 7 hours ago|
[dead]