views:

120

answers:

1

Apache has built in capabilities to GZIP content (HTML, JPG.. etc) Every time its done it uses slightly more CPU then it would normally.

So my question, Is it possible to cache the end compressed version instead of having your machine doing it every single time.

+2  A: 

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

chaos