Top "Sidekiq" questions

Sidekiq is a background processing framework for Ruby.

Are there console commands to look at whats in the queue and to clear the queue in Sidekiq?

I'm used to using delayed_jobs method of going into the console to see whats in the queue, and the …

ruby-on-rails sidekiq
How to clear all the jobs from Sidekiq?

I am using sidekiq for background tasks in Rails application. Now the numbers of jobs becomes more, so I want …

ruby-on-rails ruby sidekiq
Clear sidekiq queue

I've this worker that runs for ever. class Worker include Sidekiq::Worker sidekiq_options queue: "infinity", retry: true def perform(…

ruby-on-rails sidekiq
How to run sidekiq in production server?

I have a server with apache + passenger. How will I run sidekiq in production? Any configuration needed to run the …

ruby-on-rails sidekiq
Redis: NOAUTH Authentication required but there is no password setting

I got error NOAUTH Authentication required when I connect to Redis server via command: redis-cli and run ping to check …

ruby-on-rails ruby-on-rails-4 redis sidekiq
how to delete a job in sidekiq

I am using sidekiq in my rails app. Users of my app create reports that start a sidekiq job. However, …

ruby-on-rails sidekiq
Sidekiq not processing queue

What possible reasons can Sidekiq prevent from processing jobs in the queue? The queue is full. The log file sidekiq.…

ruby-on-rails-3 redis sidekiq
Get sidekiq to execute a job immediately

At the moment, I have a sidekiq job like this: class SyncUser include Sidekiq::Worker def perform(user_id) #do …

ruby sidekiq
Sidekiq Error connecting to Redis on 127.0.0.1:6379 (Errno::ECONNREFUSED) on docker-compose

I'm trying to run sidekiq worker with Rails. When I try to docker-compose up worker I get the following error: …

ruby-on-rails docker redis sidekiq docker-compose
Resque vs Sidekiq?

I 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 sidekiq