Sidekiq is a background processing framework for Ruby.
I am using Sidekiq for my background jobs: I have a worker app/workers/data_import_worker.rb class DataImportWorker …
ruby-on-rails ruby nginx passenger sidekiqI am using sidekiq in my rails application. By Default, Sidekiq can be accessed by anybody by appending "/sidekiq" after …
ruby ruby-on-rails-3 redis rescue sidekiqSo I need to stop a running Job in Sidekiq (3.1.2) programmatically, not a scheduled one. I did read the API …
jobs sidekiq cancellationI'm trying to log the progress of my sideqik worker using tail -f log/development.log in development and heroku …
ruby-on-rails ruby sidekiqIn my sidekiq dashboard, I see on the left a box with the counters Processed 168 Failed 111 Busy 0 Scheduled 0 Retries 0 Enqueued 0 …
ruby-on-rails ruby sidekiqIs there a way to get a list of all the jobs currently in the queue and running? Basically, I …
ruby-on-rails ruby sidekiqThis is my first processing jobs asynchronously I am implementing Sidekiq for background processing in my app. I will use …
ruby-on-rails asynchronous sidekiq whenever rails-activejobI'm running Rails 4.2 on Heroku (cedar), Ruby 2.1.6 I've got Sidekiq running locally on Redis with Foreman, and in my app …
ruby-on-rails heroku sidekiq ruby-on-rails-4.2Is there a way to disable automatic retry with ActiveJob and Sidekiq ? I know that with Sidekiq only, we just …
ruby-on-rails sidekiq rails-activejob