Resque (pronounced like "rescue") is a Redis-backed library for creating background jobs, placing those jobs on multiple queues, and processing them later.
I have followed the instructions to install resque, but now when I try to spawn a worker with this command …
redis resqueAs 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 resqueI 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 sidekiqI'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 resqueI am interested in setting up a monitoring service that will page me whenever there are too many jobs in …
ruby-on-rails ruby redis resqueHere 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 beanstalkdThe 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 resqueive been trying to get resque to work with heroku. i can successfully get it to work in development mode, …
ruby-on-rails heroku redis resqueI am unable to run the resque-web on my server due to some issues I still have to work on …
command-line redis resqueI 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