Update performance.md

This commit is contained in:
Daniel Lemire 2021-03-16 17:57:23 -04:00 committed by GitHub
parent 156b1b20e3
commit e35088d6ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 7 additions and 0 deletions

View File

@ -48,6 +48,13 @@ We recommend against creating many `std::string` or `simdjson::padded_string` in
auto doc = parser.iterate(padded_string_view(json_str, length, capacity));
```
or simply
```c++
auto doc = parser.iterate(json_str, length, capacity);
```
Large files and huge page support
---------------------------------