An open API service indexing awesome lists of open source software.

https://github.com/hack-fan/jq

A simple job queue use redis as backend.
https://github.com/hack-fan/jq

job-queue message-queue queue redis task-queue

Last synced: 4 months ago
JSON representation

A simple job queue use redis as backend.

Awesome Lists containing this project

README

          

# Redis job queue
A simple job queue use redis as backend.

It just uses Redis List, not Redis Stream.

Use this for:

* The simplest multi-publisher multi-worker model.
* Random small processing delays are acceptable.
* Want to know what it does.

Not for:

* Blocked consumers
* FanOut model
* Strict Message Time Series