Sidekiq is a background processing framework for Ruby.
I'm using a Sidekiq worker to complete some requests to Facebook after a user signs-in for the first time. Typically …
ruby-on-rails ruby sidekiqI am using Sidekiq for some of my background processes. Currently what I do is: start bundle exec rails s …
ruby ruby-on-rails-3.1 background-process sidekiqI have an application which uses Sidekiq. The web server process will sometimes put a job on Sidekiq, but I …
ruby-on-rails-3 sidekiq(See below for my detailed config, which is the result of Henley Chiu's answer). I've been trying to wrap my …
ruby-on-rails deployment capistrano sidekiqI have about six Sidekiq worker which perform JSON crawling. Dependent on the endpoint's dataset size they finish between 1min …
ruby memory-management memory-leaks out-of-memory sidekiqI have this Sidekiq worker: class DealNoteWorker include Sidekiq::Worker sidekiq_options queue: :email def perform(options = {}) if options[:type] == "…
ruby sidekiqI get the following warning with Rails 4 and Sidekiq on os x on development 10:13:39 worker.1 | 2014-09-22T07:13:39.857Z 86981 TID-oug0…
ruby-on-rails postgresql concurrency sidekiqFollowing the Redis Pub/Sub this works fine and i can publish messages in any class using $redis.publish 'channel', { …
ruby-on-rails ruby-on-rails-4 redis publish-subscribe sidekiqI can't exactly find how to set my recurrence rule to initiate the job every 2 hours. Currently I have my …
ruby-on-rails ruby sidekiq sidetiqI'm not familiar with the internals of Sidekiq and am wondering if it's okay to launch several Sidekiq instances with …
ruby sidekiq