diff options
author | isaacs <i@izs.me> | 2013-03-05 22:57:15 -0800 |
---|---|---|
committer | isaacs <i@izs.me> | 2013-03-06 11:44:30 -0800 |
commit | b0f6789a78dbb14778769d1d76b195c2fcd8a340 (patch) | |
tree | c36cf83a3fb757ba9ae1c0900da063498a07fe44 /doc | |
parent | d5a0940fff9091dc6e5c4e3aaed35e07d69b52c8 (diff) | |
download | node-new-b0f6789a78dbb14778769d1d76b195c2fcd8a340.tar.gz |
stream: Remove bufferSize option
Now that highWaterMark increases when there are large reads, this
greatly reduces the number of calls necessary to _read(size), assuming
that _read actually respects the size argument.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/api/stream.markdown | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/doc/api/stream.markdown b/doc/api/stream.markdown index c419266bc3..d4e5624595 100644 --- a/doc/api/stream.markdown +++ b/doc/api/stream.markdown @@ -90,8 +90,6 @@ method. (See below.) ### new stream.Readable([options]) * `options` {Object} - * `bufferSize` {Number} The size of the chunks to consume from the - underlying resource. Default=16kb * `highWaterMark` {Number} The maximum number of bytes to store in the internal buffer before ceasing to read from the underlying resource. Default=16kb |