2 ms·
Also did something very similar, but swapped out the storage layer with an embed of leveldb. Also supports both an HTTP and Redis API. https://github.com/toma
by slicedbrandy 3y ago
Also did something very similar, but swapped out the storage layer with an embed of leveldb.
Also supports both an HTTP and Redis API.
https://github.com/tomarrell/miniqueue https://github.com/tomarrell/miniqueue
- markusw 3y agoInteresting that it supports the Redis API as well! As noted elsewhere here, it was important to me to use SQLite, since that's what I use as the storage layer already. But I've added HTTP adapters for remote clients. I hadn't thought of using a different remote API, interesting idea. Thank you for the pointer!