> How is everyone doing GZIP compression of dynamic pages (SSL + > plain) in mp2? Is mod_deflate the way to go?
the old mp1 paradigm of compressing content from the response phase doesn't really hold up well with Apache 2 - you need to worry about output filters (such as mod_include) that want to post-process the content now. so, whatever pure-perl implementations you see for mp2 would need to be implemented as an output filter, just like mod_deflate. in general, I'm in favor of using core Apache C modules whenever possible, so mod_deflate is where I'd start for sure. HTH --Geoff -- Report problems: http://perl.apache.org/bugs/ Mail list info: http://perl.apache.org/maillist/modperl.html List etiquette: http://perl.apache.org/maillist/email-etiquette.html