Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Varnish will hold compressed obj in Cache, but when client don't support gzip.

How does Varnish deal with it? Does it hold the other uncompressed obj in Cache too, or decompress the compressed obj?

share|improve this question

2 Answers

up vote 2 down vote accepted

Varnish 3.0 supports Gzip. All HTTP requests to the backend will include a request for gzipped content, so by default all objects are stored in memory gzipped.

If the backend does not support gzip, you can ask Varnish to compress the response before storing it by setting beresp.do_gzip in vcl_fetch.

If a request comes in from a client that does not support gzip, Varnish will gunzip the stored object before delivering it.

Here is a link to the official documentation on compression:

https://www.varnish-cache.org/docs/3.0/tutorial/compression.html

share|improve this answer

Varnish 2.x does not compress or de-compress: if the client supports Gzip, it will hold a gzipped version of the page in cache. If the client does not support it, another copy will be placed in the cache for the plain-content, without compression.

So yes: depending on the Accept-Encoding header (which should be normalized), multiple version of a page will be held in cache for each supported compression algoritme.

*Updated: editted for clarity, the above is for Varnish 2.0 or 2.1 only. Varnish 3.x supports gzip, as explained above.

share|improve this answer
Varnish 3.0 has native support for compression, as opposed to older versions. See the tutorial link in @lkarsten's answer for details. – Martijn Heemels Jan 8 at 17:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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