Top "Sidekiq" questions

Sidekiq is a background processing framework for Ruby.

sidekiq does not generate sidekiq.pid file on heroku, using with Redistogo

I've been struggling for two days with getting sidekiq work on heroku production environment. I've read all the available documentation …

ruby-on-rails heroku pid sidekiq redistogo
How to tell if sidekiq is connected to redis server?

Using the console, how can I tell if sidekiq is connected to a redis server? I want to be able …

ruby-on-rails redis sidekiq
Sidekiq: Ensure all jobs on the queue are unique

I have some update triggers which push jobs onto the Sidekiq queue. So in some cases, there can be multiple …

ruby-on-rails ruby message-queue sidekiq
Passing an options hash to a sidekiq worker

I remember when I tried passing a params (JSON) option to a sidekiq worker method and it didn't work out …

ruby-on-rails sidekiq
What is the best way to use Redis in a Multi-threaded Rails environment? (Puma / Sidekiq)

I'm using Redis in my application, both for Sidekiq queues, and for model caching. What is the best way to …

ruby ruby-on-rails-4 redis thread-safety sidekiq
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
execute only one of many duplicate jobs with sidekiq?

I have a background job that does a map/reduce job on MongoDB. When the user sends in more data …

ruby-on-rails mongodb sidekiq
Monit Ruby on Rails Sidekiq

I'm trying to set up Monit for Sidekiq. Here's what I have so far for my config file: check process …

ruby-on-rails-3 monit sidekiq
Sidekiq: change rate of retry for failed job?

I have jobs of a particular type that I'd like to have retry more frequently than set by the default …

ruby-on-rails ruby sidekiq
Sidekiq - view completed jobs

Is it possible to somehow view sidekiq completed job list - for example, find all PurchaseWorkers with params (1)? Yesterday in …

ruby redis sidekiq