json-benchmark icon indicating copy to clipboard operation
json-benchmark copied to clipboard

nativejson-benchmark in Rust

Results 10 json-benchmark issues
Sort by recently updated
recently updated
newest added

* Add `simd-json-derive` for struct serialization * Bump `simd-json` to 0.4

@sunnygleason and me have put quite some work into improving simd-json.rs performance it would be great if the numbers could be updated with the current version of simd-json.rs. Many thanks...

The `rustc_serialize` library has a streaming / token-based parser, which can be used in advanced applications to implement very efficient json extraction while keeping the memory overhead of the parsing...

> Traverse DOM and count the number of JSON types, total length of string, and total numbers of elements/members in array/objects.

Similar to [memorystat.h](https://github.com/miloyip/nativejson-benchmark/blob/bfbb28f22f40a37bf4f81072abc89567819ac530/src/memorystat.h).

The project now lives at https://github.com/simd-lite/simd-json

TODO ``` DOM STRUCT ======= serde_json ======= parse|stringify ===== parse|stringify ==== data/canada.json 400 MB/s 460 MB/s 500 MB/s 390 MB/s data/citm_catalog.json 540 MB/s 790 MB/s 1000 MB/s 1070 MB/s data/twitter.json...

Hi! I am doing research about Profile-Guided Optimization (PGO) effects on different kinds of software - my current results are available [here](https://github.com/zamazan4ik/awesome-pgo). I decided to PGO-optimize `json-benchmark` and try to...