Sidekiq is a background processing framework for Ruby.
I'm used to using delayed_jobs method of going into the console to see whats in the queue, and the …
ruby-on-rails sidekiqI am using sidekiq for background tasks in Rails application. Now the numbers of jobs becomes more, so I want …
ruby-on-rails ruby sidekiqI've this worker that runs for ever. class Worker include Sidekiq::Worker sidekiq_options queue: "infinity", retry: true def perform(…
ruby-on-rails sidekiqI have a server with apache + passenger. How will I run sidekiq in production? Any configuration needed to run the …
ruby-on-rails sidekiqI 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 sidekiqI am using sidekiq in my rails app. Users of my app create reports that start a sidekiq job. However, …
ruby-on-rails sidekiqWhat possible reasons can Sidekiq prevent from processing jobs in the queue? The queue is full. The log file sidekiq.…
ruby-on-rails-3 redis sidekiqAt the moment, I have a sidekiq job like this: class SyncUser include Sidekiq::Worker def perform(user_id) #do …
ruby sidekiqI'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-composeI 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