How to update Resque to clear data

264 Views Asked by At

I am uncertain why I have old data when I have just dropped by database & reseeded with new data. The old data is tied to a Resque job and I'm not sure why this is happening.

1

There are 1 best solutions below

0
On

It is using Redis? If yes, that is your answer.

You can clean all Resque queues following this command:

Resque.queues.each { |q| Resque.redis.del "queue:#{q}" }