* Support specifying the Redis Database to use. Since this package uses Redis' `KEYS` command, which is potentially slow if there are lots of keys in the database, this provides a way to partition a Redis instance to avoid other uses creating performance issues for DLQ.
4.10.1
* Fix handling of `--yes` argument in `queue_clear`
4.10.0
* Pass through `--extra-settings` to worker processes, so that they obey any extra configuration passed that way; fixes https://github.com/thread/django-lightweight-queue/issues/78 * Add a new `queue_clear` management command which empties a given queue of jobs (this is a potentially destructive action)
4.9.0
* Rename `--config` to `--extra-settings` in order to work around https://github.com/jazzband/django-configurations/issues/343. The former spelling is kept as a deprecated alias.
4.8.0
* Revert the reliable Redis backend to use KEYS instead of SCAN when starting up as SCAN turned out to have worse performance impacts than KEYS in real-world usage.
4.7.0
- Update the reliable Redis backend to use `SCAN` instead of `KEYS` when starting up to avoid blocking the Redis instance when many workers nodes start in a short amount of time.