Skip to content

Commit 3458e62

Browse files
authored
Update README.md
1 parent 14039d0 commit 3458e62

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

README.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,12 @@ simdjson : Parsing gigabytes of JSON per second
1111
<img src="images/logo.png" width="10%" style="float: right">
1212
JSON is everywhere on the Internet. Servers spend a *lot* of time parsing it. We need a fresh
1313
approach. The simdjson library uses commonly available SIMD instructions and microparallel algorithms
14-
to parse JSON 2.5x faster than anything else out there.
14+
to parse JSON 2.5x faster than RapidJSON and 25x faster than JSON for Modern C++.
1515

16-
* **Fast:** Over 2.5x faster than other production-grade JSON parsers.
17-
* **Easy:** First-class, easy to use API.
16+
* **Fast:** Over 2.5x faster than commonly used production-grade JSON parsers.
17+
* **Record Breaking Features:** Minify JSON at 6 GB/s, validate UTF-8 at 13 GB/s, NDJSON at 3.5 GB/s.
18+
* **Easy:** First-class, easy to use and carefully documented APIs.
19+
* **Beyond DOM:** Try the new On Demand API for twice the speed (>4GB/s).
1820
* **Strict:** Full JSON and UTF-8 validation, lossless parsing. Performance with no compromises.
1921
* **Automatic:** Selects a CPU-tailored parser at runtime. No configuration needed.
2022
* **Reliable:** From memory allocation to error handling, simdjson's design avoids surprises.
@@ -119,9 +121,12 @@ or larger files (e.g., 3MB). The following plot presents parsing
119121
speed for [synthetic files over various sizes generated with a script](https://github.com/simdjson/simdjson_experiments_vldb2019/blob/master/experiments/growing/gen.py) on a 3.4 GHz Skylake processor (GNU GCC 9, -O3).
120122
<img src="doc/growing.png" width="90%">
121123
122-
123124
[All our experiments are reproducible](https://github.com/simdjson/simdjson_experiments_vldb2019).
124125
126+
You can go even faster with our new [On Demand API](https://github.com/simdjson/simdjson/blob/master/doc/ondemand.md).
127+
For NDJON files, checkout [our safe multithreaded parsing functions](https://github.com/simdjson/simdjson/blob/master/doc/parse_many.md).
128+
129+
125130
Real-world usage
126131
----------------
127132

0 commit comments

Comments
 (0)