Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
rqと RedisToGoを使用しています。キュー内のジョブ数を取得するにはどうすればよいですか? 私はドキュメントでそれを見つけることができませんか?(パイソンで)
私がしようとすると:
print "Before: ", len(q.jobs) result = q.enqueue(worker.A) result = q.enqueue(worker.B) print "After: ", len(q.jobs)
どちらも0を与えるだけです。
lenRQの場合、キュー内のジョブを取得できるはずです。
len
from rq import Queue queue = Queue() len(queue.jobs)