How to cache Apaches GZIP compressed content

Apache has built-in features for GZIP content (HTML, JPG, etc.). Each time it runs, it uses a little more CPU than usual.

So my question is: is it possible to cache the final compressed version instead of having your machine do this every time.

+6
module apache gzip compression
source share
1 answer

Yes, you would use mod_cache (possibly with mod_disk_cache ).

+3
source share

All Articles