Created
November 22, 2016 16:32
-
-
Save ncancelliere/2d4dcda20fee1ae6077d73ff85ef6288 to your computer and use it in GitHub Desktop.
Ruby isn't slow - RubyGems is.
This file contains 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
# How long does it take to execute empty string? | |
$ time ruby -e' ' | |
real 0m0.346s | |
user 0m0.063s | |
sys 0m0.032s | |
$ time ruby --disable-gems -e' ' | |
real 0m0.016s | |
user 0m0.009s | |
sys 0m0.004s |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment