If I enqueue a job using Resque.enqueue
I can open up a snazzy interface at localhost:(whatever)/resque
and see my queued jobs. But if I schedule a job using the resque-scheduler
gem (e.g. by using Resque.enqueue_at(10.minutes.from_now, MyJob)
), it doesn't appear in that interface - all I can do is wait 10 minutes and see if MyJob
gets executed!
Is there no way I can see what jobs have been queued, programmatically or otherwise? Do I have to go digging around in Redis?