I have no idea of what compressor modules like gzip are, I have never used it so far, but it sounds like it can improve the site performance a lot, so I want to know What are compressor modules? Why are they important? and, How to use it? In terms for PHP.
Share
They, umm, compress stuff… 🙂
Websites can send pages to clients that are compressed (eg, gzipped) so that the time of transmission is lower, particular for low bandwidth clients (or servers with high loads, small pipes).
It can decrease the load time of a website, given sufficient transmission time savings vs decompression time costs.
For example, you can instruct PHP to gzip all pages with the following:
Check out the manual page for ob_gzhandler.
Want the short of it in a SO-liked bullet point list? YW