mirror of
https://github.com/mperham/sidekiq.git
synced 2022-11-09 13:52:34 -05:00
35 lines
713 B
Ruby
35 lines
713 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
|
|
|
|
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
|
|
|
|
Sidekiq::Extensions.enable_delay!
|