निम्नलिखित का प्रयास करें (आप रेडिस-क्ली के साथ यह सब सत्यापित कर सकते हैं):
yesterday.empty() # This will wipe out rq:queue:yesterday and all of its contents
del(yesterday) # Deletes the variable itself
r = Redis()
r.srem('rq:queues', 'rq:queue:yesterday') # Removed the entry from rq:queues set. The library unfortunately doesn't seem to clean this up by itself.