I've always thought that 1.9.x was supposed to be faster than REE, but consuming more memory. But as it was recently pointed out to me, REE is actually faster than executing RSpec specs, and by a huge margin.

$ rvm use ree
$ rvm gemset create sandbox
$ rvm gemset use sandbox
$ gem install rspec

$ time rspec foo_spec.rb 
No examples found.

Finished in 0.07346 seconds
0 examples, 0 failures

real    0m0.104s
user    0m0.059s
sys 0m0.015s

and after doing the same thing with 1.9.3, I'm getting

$ time rspec foo_spec.rb 
No examples found.

Finished in 0.13922 seconds
0 examples, 0 failures

real    0m0.208s
user    0m0.122s
sys 0m0.022s

That's twice as much with an empty gemset, containing only rspec and executed on a empty spec file. I'm seeing even larger differences on gemsets containing multiple gems.

Why is this happening, isn't 1.9.3 supposed to be the fastest version currently available?

I'm running the latest versions installed via RVM on OS X Lion.

link|improve this question

1  
You are only measuring startup time, not actual speed at useful tasks. Chose something more complex which matches your code instead to get useful benchmark results. – Holger Just Dec 18 '11 at 0:37
Also, beware of file-system caching. To get more accurate results, run each test, say, 20 times consecutively and take the median of the last 15 runs. – phs Dec 18 '11 at 0:42
@phs yes I'm aware of the file-system caching, but the problem is when the tests get run for the first time, since I'm only going to run them again when I change the files – Jakub Arnold Dec 18 '11 at 2:11
@HolgerJust I tried the same thing even on more complex scenarios and it always turns out that REE runs the specs faster. The example I posted is just illustrative. I even tried completely reinstalling 1.9.3 to have a clean start. – Jakub Arnold Dec 18 '11 at 2:13
feedback

2 Answers

It depends on what you bench against really. If you do something as simple as that then it doesn't even count in my opinion. So, here's an example of my Backup gem which does a lot of file "requires" and runs a bunch of real world specs.

Ruby Enterprise Edition

time bundle exec rspec spec

real    0m5.579s
user    0m3.427s
sys 0m0.465s

502 examples, 0 failures

Ruby 1.9.3p0

bundle exec rspec spec

real    0m3.863s
user    0m3.552s
sys 0m0.299s

502 examples, 0 failures

The start-up time is generally faster with 1.9.3p0 since a certain patch made it in that changes the algorithm of the file require function, which on it's own I believe reduced the average load time of apps similar in size of average Ruby on Rails applications by about 30%. But, if there are barely any files initially loaded, and the process doesn't run for long, then it might be slower.

link|improve this answer
feedback

REE is a fork of MRI Ruby 1.8, and Ruby 1.8 is faster than ruby 1.9 at doing require. So for simple scripts, REE will be faster.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.