-
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
url: fix setting url.search
to the empty string
#11105
Conversation
Fixes: nodejs#11101 Fixes: 98bb65f "url: improving URLSearchParams"
lib/internal/url.js
Outdated
@@ -487,7 +487,7 @@ Object.defineProperties(URL.prototype, { | |||
if (!search) { | |||
ctx.query = null; | |||
ctx.flags &= ~binding.URL_FLAGS_HAS_QUERY; | |||
this[searchParams][searchParams] = {}; | |||
this[searchParams][searchParams] = []; |
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.
Another way to do it is to not return here, create an else branch to wrap the stuff below and leave the initialization to initSearchParams(this[searchParams], search)
later. That way URL doesn't need to know about the data sturcture of URLSearchParams
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.
@joyeecheung, done, PTAL.
This does bring a drop to performance when !search
. To counter this problem I added a few conditions to avoid parsing as much as possible.
After those changes, when alternative is changed to ''
, there is a 2.8% drop in performance; but when it is '?'
there is a 400% increase, as measured by
node benchmark/compare.js --new ./after --old ./orig \
--set n=1e5 --set prop=search --set 'url=http://example.com/' \
--filter properties url
That's pretty good IMO.
Will this make it to a 7.5.1 or will it have to wait for 7.6? |
Unsure. It depends on when 7.5.1 goes out. This won't land until Friday following our typical 48 hour cycle |
lib/internal/url.js
Outdated
@@ -614,6 +611,10 @@ function update(url, params) { | |||
// Reused by the URL parse function invoked by | |||
// the href setter, and the URLSearchParams constructor |
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.
We can probably just get rid of the comment now, or mention search
in it.
Landed in 0792d45. |
PR-URL: #11105 Fixes: #11101 Fixes: 98bb65f "url: improving URLSearchParams" Reviewed-By: James M Snell <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Joyee Cheung <[email protected]>
PR-URL: nodejs#11105 Fixes: nodejs#11101 Fixes: 98bb65f "url: improving URLSearchParams" Reviewed-By: James M Snell <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Joyee Cheung <[email protected]>
PR-URL: nodejs#11105 Fixes: nodejs#11101 Fixes: 98bb65f "url: improving URLSearchParams" Reviewed-By: James M Snell <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Joyee Cheung <[email protected]>
PR-URL: nodejs#11105 Fixes: nodejs#11101 Fixes: 98bb65f "url: improving URLSearchParams" Reviewed-By: James M Snell <[email protected]> Reviewed-By: Michaël Zasso <[email protected]> Reviewed-By: Joyee Cheung <[email protected]>
Fixes: #11101
Fixes: 98bb65f "url: improving URLSearchParams"
Checklist
make -j4 test
(UNIX), orvcbuild test
(Windows) passesAffected core subsystem(s)
url