We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
FileEncoder
1 parent 7d7de5b commit 74ca129Copy full SHA for 74ca129
compiler/rustc_serialize/src/opaque.rs
@@ -19,7 +19,7 @@ pub type FileEncodeResult = Result<usize, (PathBuf, io::Error)>;
19
pub const MAGIC_END_BYTES: &[u8] = b"rust-end-file";
20
21
/// The size of the buffer in `FileEncoder`.
22
-const BUF_SIZE: usize = 8192;
+const BUF_SIZE: usize = 64 * 1024;
23
24
/// `FileEncoder` encodes data to file via fixed-size buffer.
25
///
0 commit comments