Skip to content

Instantly share code, notes, and snippets.

@jsanders
Last active December 12, 2015 06:19
Show Gist options
  • Save jsanders/4727987 to your computer and use it in GitHub Desktop.
Save jsanders/4727987 to your computer and use it in GitHub Desktop.
Sidekiq profiling
source 'https://rubygems.org'
gem 'sidekiq'
require 'sidekiq'
class MyWorker
include Sidekiq::Worker
end
bundle install && bundle exec sidekiq -c 1000 -r ./my_worker.rb
@jsanders
Copy link
Author

jsanders commented Feb 7, 2013

87MB steady state - looks like 1000 real threads to me.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment