Created
November 26, 2009 07:43
-
-
Save BanzaiMan/243310 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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