JRuby "IO.foreach" Performance November 03, 2009·15 mins I recently did some contributor work with JRuby focusing on performance problems. Here’s the story.
Distilling JRuby: The JIT Compiler October 06, 2009·31 mins Part Three in my “Distilling JRuby” series talks about a key figure in the performance of JRuby: The JIT Compiler
Distilling JRuby: Tracking Scope September 25, 2009·21 mins Part Two in my “Distilling JRuby” series talks about how variable scope is tracked inside the JRuby runtime.
Distilling JRuby: Method Dispatching 101 September 16, 2009·13 mins Part One in my “Distilling JRuby” series covers the “basics” in method to method dispatching in JRuby
Harnessing Java varArgs on Non-VarArgs Methods September 11, 2009·3 mins A technique for cleaning up array method parameter syntax from the outside.