8000 Support JSON pointer in DOM navigation model · JavaScriptExpert/simdjson@0bcda5e · GitHub
[go: up one dir, main page]

Skip to content

Commit 0bcda5e

Browse files
committed
Support JSON pointer in DOM navigation model
1 parent 3e39a99 commit 0bcda5e

File tree

6 files changed

+689
-121
lines changed

6 files changed

+689
-121
lines changed

README.md

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -40,34 +40,31 @@ simdjson is easily consumable with a single .h and .cpp file.
4040
100 results.
4141
```
4242
43-
## Real-world usage
44-
45-
- [Microsoft FishStore](https://github.com/microsoft/FishStore)
46-
- [Yandex ClickHouse](https://github.com/yandex/ClickHouse)
47-
- [Clang Build Analyzer](https://github.com/aras-p/ClangBuildAnalyzer)
48-
49-
If you are planning to use simdjson in a product, please work from one of our releases.
50-
51-
## Research article (VLDB Journal)
43+
## How It Works
5244
53-
A description of the design and implementation of simdjson is in our research article:
45+
simdjson's startling speed is a result of research into the best ways to take advantage of modern superscalar architectures. The biggest factors are using parallel/vector algorithms and SIMD instructions to eliminate branches, reducing data dependency, and careful attention to cache.
5446
55-
* Geoff Langdale, Daniel Lemire, [Parsing Gigabytes of JSON per Second](https://arxiv.org/abs/1902.08318), VLDB Journal 28 (6), 2019appear)
47+
* A description of the design and implementation of simdjson is in our research article in VLDB journal: Geoff Langdale, Daniel Lemire, [Parsing Gigabytes of JSON per Second](https://arxiv.org/abs/1902.08318), VLDB Journal 28 (6), 2019appear)
5648
5749
We also have an informal [blog post providing some background and context](https://branchfree.org/2019/02/25/paper-parsing-gigabytes-of-json-per-second/).
5850
5951
Some people [enjoy reading our paper](https://arxiv.org/abs/1902.08318):
6052
6153
[<img src="images/halvarflake.png" width="50%">](https://twitter.com/halvarflake/status/1118459536686362625)
6254
63-
6455
## Talks
6556
6657
QCon San Francisco 2019 (best voted talk):
6758
6859
[![simdjson at QCon San Francisco 2019](http://img.youtube.com/vi/wlvKAT7SZIQ/0.jpg)](http://www.youtube.com/watch?v=wlvKAT7SZIQ)
6960
61+
## Real-world usage
7062
63+
- [Microsoft FishStore](https://github.com/microsoft/FishStore)
64+
- [Yandex ClickHouse](https://github.com/yandex/ClickHouse)
65+
- [Clang Build Analyzer](https://github.com/aras-p/ClangBuildAnalyzer)
66+
67+
If you are planning to use simdjson in a product, please work from one of our releases.
7168
7269
## Performance results
7370

0 commit comments

Comments
 (0)
0