2
我已經使用rq和RedisToGo。我如何獲得隊列中的工作數量?我無法在文檔中找到它? (在Python)如何獲取rq隊列中的作業數量?
當我嘗試:
print "Before: ", len(q.jobs)
result = q.enqueue(worker.A)
result = q.enqueue(worker.B)
print "After: ", len(q.jobs)
它只是給0兩次。
我試過了,它給爲零。 – nickponline
看起來也有'q.count'屬性。 https://github.com/nvie/rq/blob/master/rq/queue.py#L85-L88 –