I'm using a redis server both for queueing worker jobs and for a cache, and since I don't want key conflicts, I want to know what key names Python-RQ uses to store its data.
The answer is hidden in the contrib tab, under internals here,
All jobs are stored in Redis under the
rq:job:
prefix, for example
rq:job:55528e58-9cac-4e05-b444-8eded32e76a1
Further reading shows that all metadata is stored there, so the answer is only keys which start with rq:job
, so you (or I?) should be safe.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With