Looks like that's only in the "development" version though and not the "stable" version.  May have been smarter to back-port the feature rather than adding a different one though.<br><br><div class="gmail_quote">
On Thu, Dec 20, 2012 at 5:03 PM, Maxim Dounin <span dir="ltr"><<a href="mailto:mdounin@mdounin.ru" target="_blank">mdounin@mdounin.ru</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Hello!<br>
<div><div class="h5"><br>
On Thu, Dec 20, 2012 at 02:51:44PM -0500, Daniel Church wrote:<br>
<br>
> I'm running nginx on a cheap VPS, which has pretty horrible disk i/o.  As<br>
> such I keep most of my content in memcached so that nginx never has to hit<br>
> the disk, a good mix of cached dynamic and cached static content.  I wanted<br>
> to use GZIP compression without wasting CPU cycles gzipping memcached<br>
> content over and over again.<br>
><br>
> I created a flag "memcache_assume_gzipped" to the memcache module.  If you<br>
> turn it on for a location, it will append "Content-type: gzip" to the<br>
> headers of the response inside the memcache module.  This way, you can gzip<br>
> content (level 9), store it straight into memcache, and then nginx will<br>
> return it with the appropriate headers.  Example here:<br>
><br>
> <a href="http://alpha.criticalmeltdown.com/demo/2" target="_blank">http://alpha.criticalmeltdown.com/demo/2</a><br>
><br>
> Is this something anyone is interested in incorporating into the current<br>
> stable branch, or is it too much of a niche need?  If anyone wants it, I<br>
> can throw together a patch file.<br>
<br>
</div></div>There is already memcached_gzip_flag, which allows to add<br>
"Content-Type: gzip" based on flags a memcached item.<br>
<br>
<a href="http://nginx.org/r/memcached_gzip_flag" target="_blank">http://nginx.org/r/memcached_gzip_flag</a><br>
<br>
And even gunzip module which allows to gunzip such responses for<br>
clients which doesn't support gzip.<br>
<br>
<a href="http://nginx.org/r/gunzip" target="_blank">http://nginx.org/r/gunzip</a><br>
<br>
Not sure why you want to introduce another directive for this.<br>
<span class="HOEnZb"><font color="#888888"><br>
--<br>
Maxim Dounin<br>
<a href="http://nginx.com/support.html" target="_blank">http://nginx.com/support.html</a><br>
<br>
_______________________________________________<br>
nginx-devel mailing list<br>
<a href="mailto:nginx-devel@nginx.org">nginx-devel@nginx.org</a><br>
<a href="http://mailman.nginx.org/mailman/listinfo/nginx-devel" target="_blank">http://mailman.nginx.org/mailman/listinfo/nginx-devel</a><br>
</font></span></blockquote></div><br>