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
feat: improve performance by reducing the trashing of zlib::Inflate.
Previously, for every zlib inflate operation, we would allocate memory
due to the creation of a decompressor.
This is now avoided by reusing thread-local copies of such a decompressor,
which is reused and reset instead.
0 commit comments