Why are major web sites using gzip?

后端 未结 1 366
予麋鹿
予麋鹿 2020-12-15 02:54

I just searched about gzip and Deflate, and found out that Deflate is better.

  • GZip or Deflate for HTTP compression
  • Why use deflate instead of gzip for
相关标签:
1条回答
  • 2020-12-15 03:25

    It is apparently due to a misunderstanding resulting from the choice of the name "Deflate". The http standard clearly states that "deflate" really means the zlib format:

        The "zlib" format defined in RFC 1950 [31] in combination with
        the "deflate" compression mechanism described in RFC 1951 [29].
    

    However early Microsoft servers would incorrectly deliver raw deflate for "Deflate" (i.e. just RFC 1951 data without the zlib RFC 1950 wrapper). This caused problems, browsers had to try it both ways, and in the end it was simply more reliable to only use gzip.

    The impact in bandwidth and execution time to use gzip instead of "Deflate" (zlib), is relatively small. So there we are and there it is likely to remain.

    The difference is 12 more bytes for gzip and slightly more CPU time to calculate a CRC instead of an Adler-32.

    0 讨论(0)
提交回复
热议问题