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>
39 lines
1.1 KiB
JavaScript
39 lines
1.1 KiB
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const stream = require('stream');
|
|
const assert = require('assert');
|
|
|
|
const writable = new stream.Writable({
|
|
highWaterMark: 16 * 1024,
|
|
write: common.mustCall(function(chunk, encoding, cb) {
|
|
assert.strictEqual(
|
|
readable._readableState.awaitDrainWriters,
|
|
null,
|
|
);
|
|
|
|
if (chunk.length === 32 * 1024) { // first chunk
|
|
readable.push(Buffer.alloc(34 * 1024)); // above hwm
|
|
// We should check if awaitDrain counter is increased in the next
|
|
// tick, because awaitDrain is incremented after this method finished
|
|
process.nextTick(() => {
|
|
assert.strictEqual(readable._readableState.awaitDrainWriters, writable);
|
|
});
|
|
}
|
|
|
|
process.nextTick(cb);
|
|
}, 3)
|
|
});
|
|
|
|
// A readable stream which produces two buffers.
|
|
const bufs = [Buffer.alloc(32 * 1024), Buffer.alloc(33 * 1024)]; // above hwm
|
|
const readable = new stream.Readable({
|
|
highWaterMark: 16 * 1024,
|
|
read: function() {
|
|
while (bufs.length > 0) {
|
|
this.push(bufs.shift());
|
|
}
|
|
}
|
|
});
|
|
|
|
readable.pipe(writable);
|