node/lib/internal/streams
Brian White e1d6bd9e30 stream: improve Readable.read() performance
read() performance is improved most by switching from an array to
a linked list for storing buffered data. However, other changes that
also contribute include: making some hot functions inlinable, faster
read() argument checking, and misc code rearrangement to avoid
unnecessary code execution.

PR-URL: https://github.com/nodejs/node/pull/7077
Reviewed-By: Calvin Metcalf <calvin.metcalf@gmail.com>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
2016-07-05 22:10:22 +02:00
..
BufferList.js stream: improve Readable.read() performance 2016-07-05 22:10:22 +02:00
lazy_transform.js