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
As the documentation for pgzip mentions, it starts multiple go routines to run compression in parallel. This is something we are unlikely to do in the standard compress/gzip.
Go version
go version go1.23.1 linux/amd64
Output of
go env
in your module/workspace:What did you do?
Trying to compress a file (75M) with gzip, but it took too long.
What did you see happen?
The time spent by the compress/gzip package is dozens of times that of the pgzip (github.com/klauspost/pgzip) package.
Using compress/gzip:
Using github.com/klauspost/pgzip:
What did you expect to see?
NULL
The text was updated successfully, but these errors were encountered: