Top "Resque" questions

Resque (pronounced like "rescue") is a Redis-backed library for creating background jobs, placing those jobs on multiple queues, and processing them later.

Rescue : Connection refused - Unable to connect to Redis on localhost:6379

I have followed the instructions to install resque, but now when I try to spawn a worker with this command …

redis resque
How do I clear stuck/stale Resque workers?

As you can see from the attached image, I've got a couple of workers that seem to be stuck. Those …

ruby-on-rails ruby-on-rails-3 heroku redis resque
Resque vs Sidekiq?

I am currently using Resque for my background process but recently I heard a lot of huff-buff about sidekiq. Could …

ruby ruby-on-rails-3 resque sidekiq
How to destroy jobs enqueued by resque workers?

I'm using Resque on a rails-3 project to handle jobs that are scheduled to run every 5 minutes. I recently did …

ruby-on-rails-3 scheduled-tasks redis resque
Programmatically get the number of jobs in a Resque queue

I am interested in setting up a monitoring service that will page me whenever there are too many jobs in …

ruby-on-rails ruby redis resque
delayed_jobs vs resque vs beanstalkd?

Here is my needs: Enqueue_in(10.hours, ... ) (DJ syntax is perfect.) Multiply workers, concurrently. (Resque or beanstalkd are good for …

ruby-on-rails redis resque beanstalkd
How to deploy resque workers in production?

The GitHub guys recently released their background processing app which uses Redis: http://github.com/defunkt/resque http://github.com/…

ruby-on-rails capistrano delayed-job redis resque
deploying redis to heroku unable to connect

ive been trying to get resque to work with heroku. i can successfully get it to work in development mode, …

ruby-on-rails heroku redis resque
Inspect and retry resque jobs via redis-cli

I am unable to run the resque-web on my server due to some issues I still have to work on …

command-line redis resque
How to run "rake resque:work QUEUE=*" when Rails server boots?

I have installed resque correctly, but to process all queues I need to run rake resque:work QUEUE='*' …

ruby-on-rails ruby-on-rails-3 rake resque