-
Notifications
You must be signed in to change notification settings - Fork 30.4k
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
modules: significantly improve require performance #25362
Closed
Closed
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
bbfe4a3
benchmark: add new module loading benchmarks
BridgeAR 9c54e43
modules: significantly improve repeated requires
BridgeAR 23eee46
fixup: changed signature on master
BridgeAR ab5d408
fixup: add line back
BridgeAR f447111
fixup: typo
BridgeAR fc0493a
fixup: remove minor breaking change
BridgeAR e625fb8
fixup: remove obsolete internals check
BridgeAR c7a9751
fixup: add backwards compat fix
BridgeAR d8aca04
fixup: address long sentence
BridgeAR 5de8e71
fixup: check internal modules first
BridgeAR ba9c391
fixup: try using an own object
BridgeAR 34a1785
fixup: smaller code
BridgeAR 554c5ac
fixup: faster internal check
BridgeAR 38afefb
fixup: make sure extension symbols are ignored
BridgeAR 7194285
fixup: keep backwards compatible return value
BridgeAR 59116ac
fixup: improve benchmarks
BridgeAR 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,32 @@ | ||
'use strict'; | ||
const path = require('path'); | ||
// Use an absolute path as the old loader was faster using an absolute path. | ||
const commonPath = path.resolve(__dirname, '../common.js'); | ||
const common = require(commonPath); | ||
|
||
const bench = common.createBenchmark(main, { | ||
n: [1000], | ||
useCache: ['true', 'false'] | ||
}); | ||
|
||
function main({ n, useCache }) { | ||
const natives = [ | ||
'vm', 'util', 'child_process', 'dns', 'querystring', 'http', 'process', | ||
'http2', 'net', 'os', 'buffer', 'crypto', 'url', 'path', 'string_decoder' | ||
]; | ||
if (useCache) { | ||
for (const name of natives) | ||
require(name); | ||
require(commonPath); | ||
} | ||
|
||
bench.start(); | ||
for (var i = 0; i < n; i++) { | ||
for (var j = 0; j < natives.length; j++) | ||
require(natives[j]); | ||
// Pretend mixed input (otherwise the results are less representative due to | ||
// highly specialized code). | ||
require(commonPath); | ||
} | ||
bench.end(n * (natives.length + 1)); | ||
} |
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,51 @@ | ||
'use strict'; | ||
const fs = require('fs'); | ||
const path = require('path'); | ||
const common = require('../common.js'); | ||
|
||
const tmpdir = require('../../test/common/tmpdir'); | ||
const benchmarkDirectory = path.join(tmpdir.path, 'nodejs-benchmark-module'); | ||
|
||
const bench = common.createBenchmark(main, { | ||
ext: ['', '.js'], | ||
files: [1e3], | ||
cache: ['true', 'false'] | ||
}); | ||
|
||
function main({ ext, cache, files }) { | ||
tmpdir.refresh(); | ||
fs.mkdirSync(benchmarkDirectory); | ||
fs.writeFileSync( | ||
`${benchmarkDirectory}/a.js`, | ||
'module.exports = {};' | ||
); | ||
for (var i = 0; i <= files; i++) { | ||
fs.mkdirSync(`${benchmarkDirectory}/${i}`); | ||
fs.writeFileSync( | ||
`${benchmarkDirectory}/${i}/package.json`, | ||
'{"main": "index.js"}' | ||
); | ||
fs.writeFileSync( | ||
`${benchmarkDirectory}/${i}/index.js`, | ||
`require('../a${ext}');` | ||
); | ||
} | ||
|
||
measureDir(cache === 'true', files); | ||
|
||
tmpdir.refresh(); | ||
} | ||
|
||
function measureDir(cache, files) { | ||
var i; | ||
if (cache) { | ||
for (i = 0; i <= files; i++) { | ||
require(`${benchmarkDirectory}/${i}`); | ||
} | ||
} | ||
bench.start(); | ||
for (i = 0; i <= files; i++) { | ||
require(`${benchmarkDirectory}/${i}`); | ||
} | ||
bench.end(files); | ||
} |
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.
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.
Heads up: I think this does something similar but conflicts with #25352?