class CrawlFinishedWorker

Sidekiq server is multi-threaded so our Redis connection pool size defaults to concurrency (-c)

Sidekiq.configure_server do |config|

config.redis = { :namespace => 'x', :url => 'redis://localhost:6379/14' }

end

Public Instance Methods

perform(statistics) click to toggle source
# File lib/crawl_finished_worker.rb, line 20
def perform(statistics)
  puts "Dummy Finished Job"

  #ap statistics
  
end