| Author |
Ruby - JIT Compilers?
|
Mourouganandame Arunachalam
Ranch Hand
Joined: Oct 29, 2008
Posts: 396
|
|
Hi,
Is there any tools or concept like JIT (Just-In-Time) compilers for Ruby, something like Java?
Mourougan
|
Mourougan
Open Source leads to Open Mind
|
 |
Munendra Chevuru
Greenhorn
Joined: Feb 26, 2009
Posts: 3
|
|
Ludicrous is a just-in-time compiler for Ruby 1.8 and 1.9. Though still in the experimental stage, its performance is roughly on par with YARV (better in some benchmarks, though that may change as more features are added). It's easy to use:
class MyClass
...
include Ludicrous::Speed
# (or Ludicrous::JITCompiled)
end
I think the following site might be helpful.
|
 |
Munendra Chevuru
Greenhorn
Joined: Feb 26, 2009
Posts: 3
|
|
|
http://rubystuff.org/ludicrous/
|
 |
Mourouganandame Arunachalam
Ranch Hand
Joined: Oct 29, 2008
Posts: 396
|
|
Thanks Munendra....
Mourougan
|
 |
 |
|
|
subject: Ruby - JIT Compilers?
|
|
|