1
0
Fork 0
mirror of https://github.com/mperham/sidekiq.git synced 2022-11-09 13:52:34 -05:00
mperham--sidekiq/myapp/config/initializers/sidekiq.rb
Mike Perham 56ea001c25 Move fetching into the processor
This removes thread context switching and network delay.
2015-10-07 15:23:52 -07:00

28 lines
650 B
Ruby

Sidekiq.configure_client do |config|
config.redis = { :size => 2, :namespace => 'foo' }
end
Sidekiq.configure_server do |config|
config.redis = { :namespace => 'foo' }
config.on(:startup) { }
config.on(:quiet) { }
config.on(:shutdown) do
#result = RubyProf.stop
## Write the results to a file
## Requires railsexpress patched MRI build
# brew install qcachegrind
#File.open("callgrind.profile", "w") do |f|
#RubyProf::CallTreePrinter.new(result).print(f, :min_percent => 1)
#end
end
end
require 'sidekiq/web'
Sidekiq::Web.app_url = '/'
class EmptyWorker
include Sidekiq::Worker
def perform
end
end