Skip to content

Instantly share code, notes, and snippets.

@andersonfreitas
Created September 26, 2012 18:23
Show Gist options
  • Save andersonfreitas/3789671 to your computer and use it in GitHub Desktop.
Save andersonfreitas/3789671 to your computer and use it in GitHub Desktop.
jruby profile
# [*50..1000].collect {|val| val = val + 10}
# https://github.com/jruby/jruby/wiki/Profiling-jruby
require 'jruby/profiler'
profile_data = JRuby::Profiler.profile do
# code to be profiled:
[*50..1000].collect {|val| val = val + 10}
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment