I\'m using Resque on a rails-3 project to handle jobs that are scheduled to run every 5 minutes. I recently did something that snowballed the creation of these jobs and the stac
If you pop open a rails console, you can run this code to clear out your queue(s):
queue_name = "my_queue" Resque.redis.del "queue:#{queue_name}"