-
-
Notifications
You must be signed in to change notification settings - Fork 185
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
fix: perf regression on hot string munging path #286
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
// warning: extremely hot code path. | ||
// This has been meticulously optimized for use | ||
// within npm install on large package trees. | ||
// Do not edit without careful benchmarking. | ||
const normalizeCache = Object.create(null) | ||
const {hasOwnProperty} = Object.prototype | ||
module.exports = s => { | ||
if (!hasOwnProperty.call(normalizeCache, s)) | ||
normalizeCache[s] = s.normalize('NFKD') | ||
return normalizeCache[s] | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,13 @@ | ||
// this is the only approach that was significantly faster than using | ||
// str.replace(/\/+$/, '') for strings ending with a lot of / chars and | ||
// containing multiple / chars. | ||
const batchStrings = [ | ||
'/'.repeat(1024), | ||
'/'.repeat(512), | ||
'/'.repeat(256), | ||
'/'.repeat(128), | ||
'/'.repeat(64), | ||
'/'.repeat(32), | ||
'/'.repeat(16), | ||
'/'.repeat(8), | ||
'/'.repeat(4), | ||
'/'.repeat(2), | ||
'/', | ||
] | ||
|
||
// warning: extremely hot code path. | ||
// This has been meticulously optimized for use | ||
// within npm install on large package trees. | ||
// Do not edit without careful benchmarking. | ||
module.exports = str => { | ||
for (const s of batchStrings) { | ||
while (str.length >= s.length && str.slice(-1 * s.length) === s) | ||
str = str.slice(0, -1 * s.length) | ||
let i = str.length - 1 | ||
let slashesStart = -1 | ||
while (i > -1 && str.charAt(i) === '/') { | ||
slashesStart = i | ||
i-- | ||
} | ||
return str | ||
return slashesStart === -1 ? str : str.slice(0, slashesStart) | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
const t = require('tap') | ||
const normalize = require('../lib/normalize-unicode.js') | ||
|
||
// café | ||
const cafe1 = Buffer.from([0x63, 0x61, 0x66, 0xc3, 0xa9]).toString() | ||
|
||
// cafe with a ` | ||
const cafe2 = Buffer.from([0x63, 0x61, 0x66, 0x65, 0xcc, 0x81]).toString() | ||
|
||
t.equal(normalize(cafe1), normalize(cafe2), 'matching unicodes') | ||
t.equal(normalize(cafe1), normalize(cafe2), 'cached') | ||
t.equal(normalize('foo'), 'foo', 'non-unicdoe string') |
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
In long-running server-side application scenarios, this can lead to memory leaks here.