our tiny and overly-simple FIFO queue library is now compatible with recent Redis/redis.py versions
The library provides a simple interface where queues are created on-demand and items added using the put() and get() methods. In addition, queues are iterable, pulling items out as they become available.
In addition, the put() method provides scheduling and prioritization options. An item can be scheduled for work at a particular time, and its work priority defined in terms of an expected time where the item must be worked.
RT @rgaidot: "There's many queueing systems out there and each one of them is different and was made for solving certain problems"
RT @pypi: saferedisqueue 1.0.0: A small wrapper around Redis that provides access to a FIFO queue.
Powerhose is a single master/ multiple worker zmq lib, that can be used to push some work to specialized workers.
Kue is a priority job queue backed by redis, built for node.js.