If I am using Ruby on Rails, should I install MRI/YARV Ruby or JRuby? Which is faster?

link|improve this question

72% accept rate
Ruby 1.8 or Ruby 1.9? – Mikel Feb 4 '11 at 7:53
feedback

3 Answers

up vote 5 down vote accepted

The answer depends on many variables.

But in general, Ruby 1.9 is faster than JRuby, but Ruby 1.8 is slower than JRuby.

e.g. according to the Computer Language Benchmarks Game:

Also, if your application is multi-threaded, JRuby may have some advantages over standard Ruby
(a.k.a. MRI)], depending on how many cores you have.

link|improve this answer
feedback

There's a really great article done by the guys over at programmingzen.com that compares a lot of the different flavours of ruby. Was published in July last year so still reasonably recent ;) There page compares these:

* Ruby 1.8.7 p299
* Ruby 1.9.1 p378
* Ruby 1.9.2 RC2
* IronRuby 1.0 (Mono 2.4.4)
* JRuby 1.5.1 (Java HotSpot(TM) 64-Bit Server VM 1.6.0_20)
* MagLev (rev 23832)
* Ruby Enterprise Edition 2010.02
* Rubinius 1.0.1

Might be able to find what you're looking for there

http://programmingzen.com/2010/07/19/the-great-ruby-shootout-july-2010/

link|improve this answer
1) Those are no longer the latest versions. 2) Unfortunately many of the measurements are excluded from the summaries because one implementation timed out or had an error - that removes 10 out of 30. – igouy Feb 7 '11 at 19:00
thanks igouy.. trying to answer users question, thought it was a pretty good indication and what to expect. You can read the article how you like but I would have thought any timeouts and errors should definately be published when doing comparisons like these..? – 2potatocakes Feb 8 '11 at 22:00
>>but I would have thought<< Instead of guessing, I asked the author of the article - "which data made it into the summary – just data from rows which had no timeout or error?" and he answered "Yes." Read the comments. – igouy Feb 11 '11 at 19:10
feedback

Honestly, it depends on your code. Install RVM or Pik on your machine, install a bunch of different versions of ruby, and try running your code in them.

For example: An application that frequently restarts is not a great candidate for JRuby since JRuby has some ramp-up time before Hotspot is able to effectively optimize your code. Likewise, an application that relies on threads is not a great candidate for Ruby 1.8.7 since Ruby 1.8.X cannot utilize more than 1 core on your processor and thus cannot execute on more than one thread at a time.

link|improve this answer
What reason would there be to use Ruby 1.8.7 rather than Ruby 1.9.2 ? – igouy Feb 5 '11 at 17:03
1  
Gem compatibility. – rogerdpack Feb 18 '11 at 0:12
Not just gem compatibility, but full application compatibility. Some apps that are not that old will not work with 1.9.X. – PatrickTulskie Mar 7 '11 at 20:51
feedback

Your Answer

 
or
required, but never shown

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