From d0da3f3ec1bbda9a411170e13ec39cb07046dccc Mon Sep 17 00:00:00 2001 From: Juan Aguilar Date: Sun, 19 Jul 2020 09:50:17 +0000 Subject: [PATCH] Improve bcodec encode performance (#22) Remove repeat calls to `reverve` method. Stop treating `item` since it has the assured drop. Add the inline attribute because the resulting body is just one line. --- ntex-codec/src/bcodec.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ntex-codec/src/bcodec.rs b/ntex-codec/src/bcodec.rs index c71c0fa4..f216ecc4 100644 --- a/ntex-codec/src/bcodec.rs +++ b/ntex-codec/src/bcodec.rs @@ -1,4 +1,4 @@ -use bytes::{BufMut, Bytes, BytesMut}; +use bytes::{Bytes, BytesMut, Buf}; use std::io; use super::{Decoder, Encoder}; @@ -13,9 +13,9 @@ impl Encoder for BytesCodec { type Item = Bytes; type Error = io::Error; + #[inline] fn encode(&mut self, item: Bytes, dst: &mut BytesMut) -> Result<(), Self::Error> { - dst.reserve(item.len()); - dst.put(item); + dst.extend_from_slice(item.bytes()); Ok(()) } }