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 a Rails application now only runs internally, so there's not so much visits right now. And there're two …
mysql ruby-on-rails-3 resqueI want to schedule and run a lot of jobs in the background during a web application execution. The web …
php resque sidekiqI want to know if there are any good solutions for autoscaling dynos AND workers on Heroku in a production …
ruby-on-rails-3 heroku scaling delayed-job resqueWhat's the best way to write Resque-related specs in RSpec without stubbing the former? We currently use the following helper: @…
ruby-on-rails ruby rspec redis resqueI followed the tutorial at https://devcenter.heroku.com/articles/queuing-ruby-resque to queue and run background jobs in a Rails …
ruby-on-rails ruby heroku rake resqueI am processing my background jobs using Resque. My model looks like this class SomeClass ... repo = Repo.find(params[:repo_…
ruby-on-rails background jobs resqueMy Resque worker class class WebWorker @queue = :jobs_queue def self.perform(id) //bunch of code here end end I …
ruby-on-rails delayed-job resqueI am trying to use php-resque to queue and execute ffmpeg conversions on my server. I understand broadly how it …
php resqueHow can I debug a resque job in rails application? I just want to write some info in a log …
ruby-on-rails ruby resque