gason benchmark

Christopher Dunn 2015-05-03 21:16:21 -07:00
parent 6e13325711
commit b41e3efc03

@ -16,4 +16,13 @@ Others
Comparisons
-----------
* https://blog.thousandeyes.com/efficiency-comparison-c-json-libraries/
* JsonCpp is not built for efficiency, but it does pretty well.
* JsonCpp is not built for efficiency, but it does pretty well.
* If you need speed, instead of **rapidjson**, consider **gason**, which is much simpler and typically faster. E.g. using its own benchmark suite:
```
Update Parse Speed
- - - ../../data/big.json, 6072199 bytes x 10 runs
10.33 850.67 68.07 rapidjson normal
6.80 777.43 74.49 rapidjson insitu
4.52 563.84 102.70 gason
```
(The first 2 numbers are time. The third is per unit time. So **gason** is quite fast.)