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

38 lines
790 B
Ruby
Raw Normal View History

Sidekiq.configure_client do |config|
2013-01-26 11:26:10 -08:00
config.redis = { :size => 2, :namespace => 'foo' }
end
Sidekiq.configure_server do |config|
config.redis = { :namespace => 'foo' }
2015-09-21 14:50:00 -07:00
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
2014-08-01 23:40:42 +00:00
require 'sidekiq/web'
Sidekiq::Web.app_url = '/'
class EmptyWorker
include Sidekiq::Worker
def perform
end
end
2015-10-08 10:19:55 -07:00
class TimedWorker
include Sidekiq::Worker
def perform(start)
now = Time.now.to_f
puts "Latency: #{now - start} sec"
end
end