Skip to content

Latest commit

 

History

History
16 lines (11 loc) · 323 Bytes

README.md

File metadata and controls

16 lines (11 loc) · 323 Bytes

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