-
Notifications
You must be signed in to change notification settings - Fork 30.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
benchmark: add stream.compose benchmark
- Loading branch information
1 parent
90d91ab
commit c052657
Showing
1 changed file
with
42 additions
and
0 deletions.
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,42 @@ | ||
'use strict'; | ||
const common = require('../common.js'); | ||
|
||
const { | ||
PassThrough, | ||
Readable, | ||
Writable, | ||
compose, | ||
} = require('node:stream'); | ||
|
||
const bench = common.createBenchmark(main, { | ||
n: [1e3], | ||
}); | ||
|
||
function main({ n }) { | ||
const cachedPassThroughs = []; | ||
const cachedReadables = []; | ||
const cachedWritables = []; | ||
|
||
for (let i = 0; i < n; i++) { | ||
const numberOfPassThroughs = 100; | ||
const passThroughs = []; | ||
|
||
for (let i = 0; i < numberOfPassThroughs; i++) { | ||
passThroughs.push(new PassThrough()); | ||
} | ||
|
||
const readable = Readable.from(['hello', 'world']); | ||
const writable = new Writable({ objectMode: true, write: (chunk, encoding, cb) => cb() }); | ||
|
||
cachedPassThroughs.push(passThroughs); | ||
cachedReadables.push(readable); | ||
cachedWritables.push(writable); | ||
} | ||
|
||
bench.start(); | ||
for (let i = 0; i < n; i++) { | ||
const composed = compose(cachedReadables[i], ...cachedPassThroughs[i], cachedWritables[i]); | ||
composed.end(); | ||
} | ||
bench.end(n); | ||
} |