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 :)