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
2016-05-31 10:01:45 -07:00

36 lines
728 B
Ruby

Sidekiq.configure_client do |config|
config.redis = { :size => 2 }
end
Sidekiq.configure_server do |config|
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
class TimedWorker
include Sidekiq::Worker
def perform(start)
now = Time.now.to_f
puts "Latency: #{now - start} sec"
end
end