According to the ReadStream code, you should be able to increase the highWaterMark
by explicitly setting it in the ReadStream options:
var rs = fs.createReadStream('/foo/bar', { highWaterMark: 128 * 1024 });
According to the ReadStream code, you should be able to increase the highWaterMark
by explicitly setting it in the ReadStream options:
var rs = fs.createReadStream('/foo/bar', { highWaterMark: 128 * 1024 });