Skip to content

Commit 8694b4f

Browse files
committed
Auto merge of #32695 - sfackler:default-buf-size, r=alexcrichton
Drop the default buffer size to 8K The 64k capacity was picked by me a couple of years ago in the initial implementation of buffered IO adaptors: https://github.com/rust-lang/rust/pull/9091/files#diff-b131eeef531ad098b32f49695a031008R62. 64K was picked for symmetry with libuv, which we no longer use. 64K is *way* larger than the default size of any other language that I can find. C, C++, and Java default to 8K, and Go defaults to 4K. There have been a variety of issues filed relating to this such as #31885. Closes #31885
2 parents dde35e7 + 8128817 commit 8694b4f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/libstd/io/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ mod lazy;
292292
mod util;
293293
mod stdio;
294294

295-
const DEFAULT_BUF_SIZE: usize = 64 * 1024;
295+
const DEFAULT_BUF_SIZE: usize = 8 * 1024;
296296

297297
// A few methods below (read_to_string, read_line) will append data into a
298298
// `String` buffer, but we need to be pretty careful when doing this. The

0 commit comments

Comments
 (0)