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.

Ruby - Exception occured: [Mysql2::Error] closed MySQL connection

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 resque
Jobs processing in background from web application

I want to schedule and run a lot of jobs in the background during a web application execution. The web …

php resque sidekiq
Gitlab: Problems running Unicorn, Resque with Passenger/Nginx

I have installed a Gitlab on a brand new Ubuntu (10.04) and it is working almost correctly. Gitlab is reachable on …

nginx passenger resque unicorn gitlab
Gems/Services for autoscaling Heroku's dynos and workers

I 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 resque
What's the best way to write Resque-related specs in RSpec?

What'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 resque
Jobs with Resque gives "Don't know how to build task 'jobs:work'" on Heroku

I 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 resque
testing using Resque with Rspec examples?

I am processing my background jobs using Resque. My model looks like this class SomeClass ... repo = Repo.find(params[:repo_…

ruby-on-rails background jobs resque
Resque jobs, how to stop running job

My Resque worker class class WebWorker @queue = :jobs_queue def self.perform(id) //bunch of code here end end I …

ruby-on-rails delayed-job resque
What is the proper way to setup and use php-resque?

I am trying to use php-resque to queue and execute ffmpeg conversions on my server. I understand broadly how it …

php resque
How to debug resque job in rails application

How can I debug a resque job in rails application? I just want to write some info in a log …

ruby-on-rails ruby resque