Comment on Dissecting the gzip format (2011)parentComments−umvi1yat the same compression time/decompression time as gzipIn my experience zstd is considerably faster than gzip for compression and decompression, especially considering zstd can utilize all cores.gzip is inferior to zstd in practically every way, no contest.−lxgr1yPractically, compatibility matters too, and it's hard to beat gzip there.−lifthrasiir1yThe benefit from zstd is however so great that I even copied the zstd binary to some server I was managing but couldn't easily compile it from scratch. Seriously, bundling zstd binary is that worthy by now.−lxgr1yIf you can control both sides, definitely go for it!But in many cases, we unfortunately can't (gzip/Deflate is baked into tons of non-updateable hardware devices for example).
Comments
In my experience zstd is considerably faster than gzip for compression and decompression, especially considering zstd can utilize all cores.
gzip is inferior to zstd in practically every way, no contest.
Practically, compatibility matters too, and it's hard to beat gzip there.
The benefit from zstd is however so great that I even copied the zstd binary to some server I was managing but couldn't easily compile it from scratch. Seriously, bundling zstd binary is that worthy by now.
If you can control both sides, definitely go for it!
But in many cases, we unfortunately can't (gzip/Deflate is baked into tons of non-updateable hardware devices for example).