v2.3.0
New Feature: RedisSimpleQueue
RedisSimpleQueue
is a Redis-backed multi-producer, multi-consumer FIFO queue compatible with Python’s queue.SimpleQueue
. In general, use a Python queue.Queue
if you’re using it in one or more threads, use multiprocessing.Queue
if you’re using it between processes, and use RedisSimpleQueue
if you’re sharing it across machines or if you need for your queue to persist across application crashes or restarts.
What's Changed
Full Changelog: v2.2.2...v2.3.0