= YAJL C Bindings for Ruby (work in progress) This gem (although not in gem form just yet) is a C binding to the excellent YAJL JSON parsing library. You can read more info at the projects website http://lloydforge.org/projects/yajl or check out it's codes at http://github.com/lloyd/yajl. == Example of use File IO json_contents = File.new('test.json', 'r') hash = Yajl::Native.parse(json) OR StringIO json_contents = StringIO.new hash = Yajl::Native.parse(json) OR maybe STDIN cat someJsonFile.json | ruby -ryajl -e "puts Yajl::Native.parse(STDIN).inspect" There are a lot more possibilities, some of which I'm going to write other gems/plugins for. Some ideas are parsing logs in JSON format, an ActiveSupport patch, Rack middleware, use with ohai, JSON API clients, etc... == How to install First, Yajl uses CMake to build itself (yes, the author realizes this isn't the norm for open source and is willing and ready to accept patches, fork away kids!) so you'll need to grab it first from http://www.cmake.org. After you've got that, grab the latest version of Yajl itself from the Githubs at http://github.com/lloyd/yajl. After you have that installed, you should be able to install it like any other gem hosted here like so: (more instructions here: http://gems.github.com) sudo gem install brianmario-yajl-ruby == Benchmarks I'll update this readme with some actual data soon. After I finished implementation - this library performs close to the same as the current JSON.parse (C gem) does on small/medium files. But on larger files, and higher amounts of iteration, this library was around 2x faster than JSON.parse. The main benefit of this library is in it's memory usage. Since it's able to parse the stream in chunks, it's memory requirements are very, very low. Again, I'll post some actual data on this; but in my testing here's what my ruby executable was using to parse a 10MB JSON file 100 times: JSON.parse ~60MB Yajl::Native.parse ~30MB