qp
qp copied to clipboard
Efficient queue manager/processor in node.js
When using QP with a redis cluster, job data is sometimes undefined when a job is pulled off the queue and given to a worker. This could be due to...
Uses [Disque](https://github.com/antirez/disque) instead of Redis as the queueing backend. Disque was designed to achieve exactly what QP was built for, and this allows QP to be a brilliant abstraction to...
Redis pub/sub doesnt care what database you select, so they should be namespaced by database or some other way
On high load queues, the server goes a bit crazy processing and emitting all of the messages. Should have a max message rate, after which it broadcasts data every 250ms...