You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Optimize Vec capacity in DeflateEncoder output_buffers (#420)
Pre-allocate `compressors` and `output_buffers` in `src/stream.rs` to
reduce dynamic memory allocations during streaming compression.
Use `reserve` for outer vectors and `with_capacity` for inner buffers.
0 commit comments