Skip to content

Instantly share code, notes, and snippets.

@BanzaiMan
Created November 26, 2009 07:43
Show Gist options
  • Select an option

  • Save BanzaiMan/243310 to your computer and use it in GitHub Desktop.

Select an option

Save BanzaiMan/243310 to your computer and use it in GitHub Desktop.
surfboard:~$ time jruby --ng -b -e "p 0"
0
Runtime: 4 ms
real 0m0.095s
user 0m0.007s
sys 0m0.016s
surfboard:~$ time jruby -b -e "p 0"
0
Runtime: 20 ms
real 0m1.009s
user 0m0.990s
sys 0m0.138s
surfboard:jruby[git:personal]$ time jruby --ng -b -e "require 'rubygems'"
Runtime: 857 ms
real 0m0.898s
user 0m0.008s
sys 0m0.017s
surfboard:jruby[git:personal]$ time jruby -b -e "require 'rubygems'"
Runtime: 3987 ms
real 0m5.000s
user 0m5.829s
sys 0m0.420s
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment