If I am using Ruby on Rails, should I install MRI/YARV Ruby or JRuby? Which is faster?
feedback
|
|
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 | ||||
|
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:
Might be able to find what you're looking for there http://programmingzen.com/2010/07/19/the-great-ruby-shootout-july-2010/ | |||||||
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. | |||||||||
feedback
|