Re: Fast JSON Parsing: UltraJSON / RapidJSON

2011-11-22 Thread Riyad Kalla
Paul, you might be interested in this benchmark as well of 3 C++ JSON
parsers (summary: libjson dominated the test by orders of magnitude)

http://lijoblogs.blogspot.com/2011/11/comparison-and-benchmark-of-c-json.html

On Mon, Nov 21, 2011 at 10:23 AM, Paul Davis paul.joseph.da...@gmail.comwrote:

 On Mon, Nov 21, 2011 at 11:11 AM, Riyad Kalla rka...@gmail.com wrote:
  I believe trunk now utilizes the C JSON parser for some nice speed
  improvements and thought this might be worth sharing.
 
  Over on the JSON spec list two devs were sharing attempts at writing the
  fastest JSON parsers in C and C++ respectively.
 
  UltraJSON (C) claims to have the fastest parsing speed at the moment:
  https://github.com/esnme/ultrajson
  RapidJSON (C++) is attempting to be the fastest as well:
  http://code.google.com/p/rapidjson/
 
  I thought it interesting enough to share these announcements; I realize
  there is much more needed from a JSON parser than just sheer speed.
 
  -R
 

 Oooohhh, interesting. I should see how Jiffy compares. Thanks for the note.



Fast JSON Parsing: UltraJSON / RapidJSON

2011-11-21 Thread Riyad Kalla
I believe trunk now utilizes the C JSON parser for some nice speed
improvements and thought this might be worth sharing.

Over on the JSON spec list two devs were sharing attempts at writing the
fastest JSON parsers in C and C++ respectively.

UltraJSON (C) claims to have the fastest parsing speed at the moment:
https://github.com/esnme/ultrajson
RapidJSON (C++) is attempting to be the fastest as well:
http://code.google.com/p/rapidjson/

I thought it interesting enough to share these announcements; I realize
there is much more needed from a JSON parser than just sheer speed.

-R


Re: Fast JSON Parsing: UltraJSON / RapidJSON

2011-11-21 Thread Paul Davis
On Mon, Nov 21, 2011 at 11:11 AM, Riyad Kalla rka...@gmail.com wrote:
 I believe trunk now utilizes the C JSON parser for some nice speed
 improvements and thought this might be worth sharing.

 Over on the JSON spec list two devs were sharing attempts at writing the
 fastest JSON parsers in C and C++ respectively.

 UltraJSON (C) claims to have the fastest parsing speed at the moment:
 https://github.com/esnme/ultrajson
 RapidJSON (C++) is attempting to be the fastest as well:
 http://code.google.com/p/rapidjson/

 I thought it interesting enough to share these announcements; I realize
 there is much more needed from a JSON parser than just sheer speed.

 -R


Oooohhh, interesting. I should see how Jiffy compares. Thanks for the note.