How to update Resque to clear data

238 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 answers

0
Gabriel Klockner 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}" }