Software:YARV

From HandWiki
Short description: Interpreter for the Ruby programming language
YARV
Developer(s)Koichi Sasada
Stable release
[1] / Error: first parameter is missing. ()
Repositorygithub.com/ruby/ruby
Written inC[2]
Operating systemCross-platform
PredecessorRuby MRI
TypeRuby Virtual Machine
LicenseRuby License
Websitewww.ruby-lang.org

YARV (Yet another Ruby VM) is a bytecode interpreter that was developed for the Ruby programming language by Koichi Sasada. The goal of the project was to greatly reduce the execution time of Ruby programs.

Since YARV has become the official Ruby interpreter for Ruby 1.9, it is also named KRI (Koichi's Ruby Interpreter), in the same vein as the original Ruby MRI, named in honor of Ruby's creator Yukihiro Matsumoto.

Performance

Benchmarks by rubychan.de showed significant increases in performance.[3] Benchmarks by Antonio Cangiano showed speed improvements over other Ruby VMs, with 1.9 on average four times faster than the original interpreter.[4][5] All evaluations comprised a mix of mostly synthetic benchmarks.

History

YARV was merged into the Ruby Subversion repository on January 1, 2007.[6] It was released as part of Ruby 1.9.0 on December 26, 2007,[7] replacing Ruby MRI.

See also

References

External links