2 releases
Uses old Rust 2015
0.0.2 | Sep 16, 2018 |
---|---|
0.0.1 | Sep 16, 2018 |
#7 in #beanstalkd
3KB
ripdeque
A simple queue server inspired by beanstalkd
.
For now, the server is interacted with using a simple plaintext TCP connection:
> PUT <item><EOF>
< <queue length><EOF>
> GET
< <item OR blank if empty><EOF>
ripdeque
will always return as soon as possible, even if the queue is empty. If nothing is in the cache, clients know as soon as possible so they can load from another resource. This is NOT a work queue where you want to block for the next available work.