Skip to content

Commit 5652efa

Browse files
committedMar 2, 2022
more comprehensive benchmarks
1 parent 89b823a commit 5652efa

File tree

111 files changed

+1873
-84
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

111 files changed

+1873
-84
lines changed
 

‎bench/README.md

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
Stream Benchmarks
2+
3+
Run `node index.js` to benchmark all the different stream implementations
4+
with the following configurations:
5+
6+
- `implementation` One of the implementations in `./impls`
7+
- `case` How is the data emitted and how is it consumed?
8+
- `fast-fast` Source emits data as fast as possible, destination
9+
consumes it immediately.
10+
- `fast-slow` Source emits data as fast as possible, destination
11+
consumes one chunk per Promise cycle.
12+
- `slow-fast` Source emits one data per Promise cycle, destination
13+
consumes it immediately.
14+
- `slow-slow` Source emits one data per Promise cycle, destination
15+
consumes one chunk per Promise cycle.
16+
- `fast-mixed` Source emits data as fast as possible, data is piped to
17+
one fast destination stream and one slow destination stream.
18+
- `pipeline` How many instances of the tested implementation are piped
19+
together between the source and destination? Tested with `1` and `20` by
20+
default.
21+
- `type` What kind of data is written?
22+
- `defaults` a buffer
23+
- `str` a string
24+
- `obj` the object `{i: 'object'}`
25+
26+
Results are written to the `./results` folder for each test case, and to
27+
`results.json` and `results.tab`.
28+
29+
See [this google
30+
sheet](https://docs.google.com/spreadsheets/d/1K_HR5oh3r80b8WVMWCPPjfuWXUgfkmhlX7FGI6JJ8tY/edit?usp=sharing)
31+
for analysis and comparisons.

‎bench/impls/README.md

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
To add a new stream type to test, create a file here that exports a
2+
function or class that can be called with `s = new Class(options)`, where
3+
`options` can include `{encoding: 'utf8'}` or `{objectMode: true}`.
4+
5+
The returned object must implement at minimum the following subset of the
6+
stream interface:
7+
8+
* `on(event, fn)` call `fn` when `event` happens
9+
* `write(data)` where `data` will be an object, string, or buffer. Return
10+
`true` if more data should be written, `false` otherwise. Emit `drain`
11+
when ready for more data if `false` is written.
12+
* `end()` no further data will be written, emit `'finish'` when all data
13+
processed
14+
* `pipe(dest)` pipe all output to `dest` stream

0 commit comments

Comments
 (0)
Please sign in to comment.