performance improvements #342

Merged
lx merged 21 commits from lx-perf-improvements into main 2022-09-12 14:38:44 +00:00
Showing only changes of commit 16f6a1a65d - Show all commits

View file

@ -434,12 +434,7 @@ impl<S: Stream<Item = Result<Bytes, Error>> + Unpin> StreamChunker<S> {
} }
} }
Ok(Some( Ok(Some(
slices slices.iter().map(|x| &x[..]).collect::<Vec<_>>().concat(),
.iter()
.map(|x| &x[..])
.collect::<Vec<_>>()
.concat()
.into(),
)) ))
} }
} }