Does GZIP Compression Level Have Any Impact On Decompression

后端 未结 3 2006
鱼传尺愫
鱼传尺愫 2021-01-31 02:38

I understand that GZIP is a combination of LZ77 and Huffman coding and can be configured with a level between 1-9 where 1 indicates the fastest compression (less compression

3条回答
  •  刺人心
    刺人心 (楼主)
    2021-01-31 03:01

    No, there is no downside on the decompression side when using the maximum compression level. In fact, there is a slight upside, in that better-compressed data decompresses faster. The reason is simply fewer compressed bits that the decompressor has to process.

提交回复
热议问题