performance improvements #342

Merged
lx merged 21 commits from lx-perf-improvements into main 2022-09-12 14:38:44 +00:00
1 changed files with 1 additions and 6 deletions
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(
slices
.iter()
.map(|x| &x[..])
.collect::<Vec<_>>()
.concat()
.into(),
slices.iter().map(|x| &x[..]).collect::<Vec<_>>().concat(),
))
}
}