Python-RQ在redis服务器上使用什么键?

What keys does Python-RQ use on the redis server?

我正在使用一个 Redis 服务器来排队工作任务和缓存,因为我不想要键冲突,我想知道什么键名 Python-RQ 用来存储它的数据.

答案隐藏在贡献选项卡中,在内部 here

All jobs are stored in Redis under the rq:job: prefix, for example

rq:job:55528e58-9cac-4e05-b444-8eded32e76a1

进一步阅读表明所有元数据都存储在那里,所以答案只是以 rq:job 开头的键,所以你(或我?)应该是安全的。