From 596d79cde2ada94b2f3d36fb7997010ac94710ce Mon Sep 17 00:00:00 2001 From: Daniel Lemire Date: Tue, 12 Mar 2019 15:13:25 -0400 Subject: [PATCH] Displaying logo --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 671313785..bc643704b 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,17 @@ -# simdjson : Parsing gigabytes of JSON per second - +# simdjson : Parsing gigabytes of JSON per second [![Build Status](https://cloud.drone.io/api/badges/lemire/simdjson/status.svg)](https://cloud.drone.io/lemire/simdjson/) [![CircleCI](https://circleci.com/gh/lemire/simdjson.svg?style=svg)](https://circleci.com/gh/lemire/simdjson) [![Build Status](https://img.shields.io/appveyor/ci/lemire/simdjson.svg)](https://ci.appveyor.com/project/lemire/simdjson) [![][license img]][license] + ## A C++ library to see how fast we can parse JSON with complete validation. 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/.