Skip to content

Latest commit

 

History

History
54 lines (37 loc) · 2.19 KB

README.textile

File metadata and controls

54 lines (37 loc) · 2.19 KB

JsonBenchmarkCpp

JsonBenchmarkCpp is a small program to benchmark various JSON
frameworks in c++

Currently supports following libs,

  1. Cajun
  2. json_spirit
  3. libjson
  4. json-parser
  5. AveryWs js

See my blog post for details.

Building

  1. Install git
  2. git clone git://github.com/lijoantony/JsonBenchmarkCpp.git
  3. Edit main.cpp to suit your needs
  4. Either edit the Makefile as you like and use make to build the executable
    or use your favourite build system to compile and link main.cpp with the libs.

Results Summary

Frameworks ranked in the order libjson, json_spirit and Cajun for both parsing and writing speeds

Eg:

$./JsonBenchmarkCpp > results.dat
averydb@debian:~/gits/JsonBenchmarkCpp$ cat results.dat  
#library                 parsing                  writing                  
cajun                    669                      160                      
json_spirit              14907                    731                      
libjson                  139                      203                      
Avery                    35                       55                       
json_parser              114                      

Here the numbers shows time taken by each lib for the particular operation in microseconds.
libjson is a clear winner among the three.
Sample results and corresponding graphs are available in results directory.
For accurate results, replace the content of file data.json with your JSON data and run the executable.

Use the gnuplot script results/graph.p to draw bar diagram out of this data:

$ ./graph.p > graph.png

Thanks

Thanks to the library authors for their effort and time.
You saved me from reinventing the same wheel again!

Special thanks to Jonathan Wallace, for actively developing libjson and helping me with my queries.