mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
1abff07392
This should give a performance boost accross the board. Given that the old limit is a decod old and memory capacity has doubled many times since I think it is appropriate to slightly bump the default limit. PR-URL: https://github.com/nodejs/node/pull/52037 Refs: https://github.com/nodejs/node/pull/46608 Refs: https://github.com/nodejs/node/pull/50120 Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io> Reviewed-By: Chengzhong Wu <legendecas@gmail.com> Reviewed-By: Moshe Atlow <moshe@atlow.co.il> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
98 lines
2.0 KiB
JavaScript
98 lines
2.0 KiB
JavaScript
// Test the speed of .pipe() with JSStream wrapping for PassThrough streams
|
|
'use strict';
|
|
|
|
const common = require('../common.js');
|
|
const { PassThrough } = require('stream');
|
|
|
|
const bench = common.createBenchmark(main, {
|
|
len: [64, 102400, 1024 * 64 * 16],
|
|
type: ['utf', 'asc', 'buf'],
|
|
dur: [5],
|
|
}, {
|
|
test: { len: 64 },
|
|
flags: ['--expose-internals'],
|
|
});
|
|
|
|
let chunk;
|
|
let encoding;
|
|
|
|
function main({ dur, len, type }) {
|
|
// Can only require internals inside main().
|
|
const JSStreamWrap = require('internal/js_stream_socket');
|
|
|
|
switch (type) {
|
|
case 'buf':
|
|
chunk = Buffer.alloc(len, 'x');
|
|
break;
|
|
case 'utf':
|
|
encoding = 'utf8';
|
|
chunk = 'ü'.repeat(len / 2);
|
|
break;
|
|
case 'asc':
|
|
encoding = 'ascii';
|
|
chunk = 'x'.repeat(len);
|
|
break;
|
|
default:
|
|
throw new Error(`invalid type: ${type}`);
|
|
}
|
|
|
|
const reader = new Reader();
|
|
const writer = new Writer();
|
|
|
|
// The actual benchmark.
|
|
const fakeSocket = new JSStreamWrap(new PassThrough());
|
|
bench.start();
|
|
reader.pipe(fakeSocket);
|
|
fakeSocket.pipe(writer);
|
|
|
|
setTimeout(() => {
|
|
const bytes = writer.received;
|
|
const gbits = (bytes * 8) / (1024 * 1024 * 1024);
|
|
bench.end(gbits);
|
|
process.exit(0);
|
|
}, dur * 1000);
|
|
}
|
|
|
|
function Writer() {
|
|
this.received = 0;
|
|
this.writable = true;
|
|
}
|
|
|
|
Writer.prototype.write = function(chunk, encoding, cb) {
|
|
this.received += chunk.length;
|
|
|
|
if (typeof encoding === 'function')
|
|
encoding();
|
|
else if (typeof cb === 'function')
|
|
cb();
|
|
|
|
return true;
|
|
};
|
|
|
|
// Doesn't matter, never emits anything.
|
|
Writer.prototype.on = function() {};
|
|
Writer.prototype.once = function() {};
|
|
Writer.prototype.emit = function() {};
|
|
Writer.prototype.prependListener = function() {};
|
|
|
|
|
|
function flow() {
|
|
const dest = this.dest;
|
|
const res = dest.write(chunk, encoding);
|
|
if (!res)
|
|
dest.once('drain', this.flow);
|
|
else
|
|
process.nextTick(this.flow);
|
|
}
|
|
|
|
function Reader() {
|
|
this.flow = flow.bind(this);
|
|
this.readable = true;
|
|
}
|
|
|
|
Reader.prototype.pipe = function(dest) {
|
|
this.dest = dest;
|
|
this.flow();
|
|
return dest;
|
|
};
|