-
Notifications
You must be signed in to change notification settings - Fork 29.8k
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
querystring: improve performance #29306
Conversation
I believe this may be applicable to v10.x as well (in addition to v12.x of course), but I have not yet tested. |
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.
Do you know why the perf difference is so large? It doesn’t look like there are any substantial changes to the code itself, which makes me curious…
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.
I'm also curious. I would expect preallocating the charCodes()
array to be 2-3x faster but that only explains the multicharsep
benchmark and that still doesn't explain the 10x speedup. :-)
Nice work at any rate!
I didn't dig that deep to find out why but I think V8 is not optimizing the |
077b6d9
to
248e9ec
Compare
PR-URL: #29306 Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Trivikram Kamat <[email protected]> Reviewed-By: Yongsheng Zhang <[email protected]>
PR-URL: #29306 Reviewed-By: Ben Noordhuis <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Trivikram Kamat <[email protected]> Reviewed-By: Yongsheng Zhang <[email protected]>
Results:
Checklist
make -j4 test
(UNIX), orvcbuild test
(Windows) passes