We already know deflate encoding is a winner over gzip with respect to speed of encoding, decoding and compression size.
So why do no large sites (that I can find) send it (when I use a browser that accepts it)?
Yahoo claims deflate is “less effective”. Why?
I maintain HTTP server software that prefers deflate, so I’d like to know if there’s some really good reason not to continue doing so.
There is some confusion about the naming between the specifications and the HTTP:
But the HTTP uses a different naming:
So to sum up:
gzipis the GZIP file format.deflateis actually the ZLIB data format. (But some clients do also accept the actual DEFLATE data format fordeflate.)See also this answer on the question What’s the difference between the "gzip" and "deflate" HTTP 1.1 encodings?: