Skip to content

Commit 0c9b3a3

Browse files
committed
saving.
1 parent d3a70bd commit 0c9b3a3

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

cppcon2025/cppcon_2025_slides.md

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,7 @@ Source: Gwen (Chen) Shapira
117117
* Validates Unicode (UTF-8) at 30 GB/s.
118118
* Rest of parsing relies on the generated index.
119119
* Allows fast skipping. (Only parse what we need)
120+
* Can minify JSON at 10 to 20 GB/s
120121

121122
---
122123

@@ -132,12 +133,9 @@ https://openbenchmarking.org/test/pts/simdjson
132133

133134
The simdjson library is found in...
134135

135-
- Node.js, Electron, ...
136+
- Node.js, Electron,...
136137
- ClickHouse
137-
- Velox
138-
- Milvus
139-
- QuestDB
140-
- StarRocks
138+
- WatermelonDB, Apache Doris, Meta Velox, Milvus, QuestDB, StarRocks
141139

142140
<img src="images/nodejs.jpg" width="20%"> <img src="images/clickhouse.jpg" width="20%">
143141

@@ -622,7 +620,7 @@ if (!needs_escape)
622620

623621
* Use the equivalent of `std::to_chars`
624622
* Could use SIMD if we wanted to
625-
* Daniel Lemire, "Converting integers to decimal strings faster with AVX-512," in Daniel Lemire's blog, March 28, 2022, https://lemire.me/blog/2022/03/28/converting-integers-to-decimal-strings-faster-with-avx-512/.
623+
* "Converting integers to decimal strings faster with AVX-512," in Daniel Lemire's blog, March 28, 2022, https://lemire.me/blog/2022/03/28/converting-integers-to-decimal-strings-faster-with-avx-512/.
626624
* Replace fast digit count by naive approach based on `std::to_string`
627625
```cpp
628626
std::to_string(value).length();

0 commit comments

Comments
 (0)