Created
February 5, 2018 05:37
-
-
Save jhawthorn/f0097bf098e93187064f7f75af3bda9e to your computer and use it in GitHub Desktop.
Ruby startup time with JIT
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
$ time ruby --disable-gems -e '' | |
0.006 total | |
$ time ruby -e '' | |
0.036 total | |
$ time ruby --disable-gems --jit -e '' | |
0.184 total | |
$ time =ruby --jit -e '' | |
0.296 total |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment