-
Notifications
You must be signed in to change notification settings - Fork 791
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Parse fast #241
base: master
Are you sure you want to change the base?
Parse fast #241
Conversation
jsmntok_t *tokens, const unsigned int num_tokens) { | ||
unsigned int max_depth = JSMN_MAX_FAST_DEPTH; | ||
unsigned int toksupers[JSMN_MAX_FAST_DEPTH]; | ||
jsmn_parse_fast(parser, js, len, tokens, num_tokens, &max_depth, toksupers); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is missing the return
So instead of parent_links in the tokens themselves, we have a separate side-array used only during parsing to store the "parents stack". Cool idea. There's probably a cache argument to be made, but I don't think it's a concern for JSMN. |
If you profile the previous code (with a larger JSON) almost 100% of the time is spent on looking for the parent, but the parent is already known so that's unnecessary work. |
Did you try |
Greatly accellerates parsing by memoizing toksuper per depth level.
Some tests were also fixed due to conflicts.
I can't spend anymore time on this.