我正在使用rq和RedisToGo。如何获得队列中的作业数?我在文档中找不到它? (在Python中)
当我尝试:
print "Before: ", len(q.jobs)
result = q.enqueue(worker.A)
result = q.enqueue(worker.B)
print "After: ", len(q.jobs)
两次都给出0。
最佳答案
对于RQ,您应该能够只获得队列中作业的len
:
from rq import Queue
queue = Queue()
len(queue.jobs)
关于python - 如何获得RQ队列中的作业数?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/14449296/