From 049eb2d87bafc375b0383201c186da793eb37f2b Mon Sep 17 00:00:00 2001 From: geofflangdale <37128715+geofflangdale@users.noreply.github.com> Date: Mon, 25 Feb 2019 13:33:15 +1100 Subject: [PATCH] Update README.md Added links to paper and blog post --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 89107995..4e339ce1 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,9 @@ JSON documents are everywhere on the Internet. Servers spend a lot of time parsing these documents. We want to accelerate the parsing of JSON per se using commonly available SIMD instructions as much as possible while doing full validation (including character encoding). +## Paper +A description of the design and implementation of simdjson appears at https://arxiv.org/abs/1902.08318 and an informal blog post providing some background and context is at https://branchfree.org/2019/02/25/paper-parsing-gigabytes-of-json-per-second/. ## Some performance results We can use a quarter or fewer instructions than a state-of-the-art parser like RapidJSON, and half as many as sajson. To our knowledge, simdjson is the first fully-validating JSON parser to run at gigabytes per second on commodity processors.