vote up 1 vote down star

It seems redundant to have zlib compress a web page during every request. It is also the bottleneck of my files' response times. Is there a way to cache the zlib'd file so that it is compressed only once at each modification? Or should I just keep wishing?

flag

3 Answers

vote up 3 vote down check

If you want a quick and lazy solution, just make gzipped copies of your most used files and turn MultiViews on for them. This still has CPU overhead to calculate the right file to send but it's less than a gzip every time. If you want to take it further you can create static type-map files.

Also you could consider using Lighttpd if possible instead of Apache. It has a mod_compress which does exactly what you want.

link|flag
vote up 0 vote down

Hm, I think mod_cache will do the job. http://httpd.apache.org/docs/2.0/mod/mod_cache.html

link|flag
vote up 0 vote down

Taking a look at this diagram, I believe this is not possible. Can anyone confirm/refute this?

http://httpd.apache.org/docs/2.2/images/filter_arch.png

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.