1
0
mirror of https://github.com/fafhrd91/actix-web synced 2024-11-24 00:21:08 +01:00

adjust low buf size

This commit is contained in:
Nikolay Kim 2018-03-01 20:13:50 -08:00
parent 1fea4bd9a6
commit b640b49b05

View File

@ -4,7 +4,7 @@ use futures::{Async, Poll};
use super::IoStream;
const LW_BUFFER_SIZE: usize = 8192;
const LW_BUFFER_SIZE: usize = 4096;
const HW_BUFFER_SIZE: usize = 32_768;