What is gZip compression?

前端 未结 3 1114
深忆病人
深忆病人 2020-12-24 04:31

I have heard a lot that one should use gZip for their webpages for faster access and downloads, and that it also saves the bandwidth.

So what is thi

3条回答
  •  失恋的感觉
    2020-12-24 05:10

    GZip Compress the files like html , js and css files while serving the request to the browser. As size of the file is reduced it is served to the user in faster manner. Not all the browser support compression but now all the modern browser support. It is highly recommended , but only one part is that it increases the CPU usages of the server which may be concern sometime. Using Gzip with client side caching will help in increasing the performance.

提交回复
热议问题