-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve parsing efficiency by switching to byteme::PerByte.
This eliminates the need for the leftover buffer and avoids unnecessary copies to shift the used bytes in the leftover buffer at every call to the (now removed) extract_up_to. Such copying caused major perf degradations when parsing complex objects with lots of nested structure but little actual data. In addition, we now have access to PerByteParallel, which allows us to read from disk and parse in parallel. This should further improve perf.
- Loading branch information
Showing
21 changed files
with
360 additions
and
295 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.