How to Set Varnish Cache-Control Headers

烂漫一生 提交于 2019-12-03 19:30:49

问题


I am hoping someone can advise on the proper method for getting Varnish to send cache-control headers. Currently, my configuration is sending "Cache-Control: no-cache" to clients.

Thanks in advance to anyone who might be able to help...


回答1:


Your back-end is sending "Cache-Control: no-cache" to Varnish which implies two things:

  • Varnish will not store the response in the cache (so a next lookup will fail)
  • Your clients (browsers and intermediate proxies) will not cache responses (and request them over and over).

The solution is simple: remove the cache-control headers after fetching the response from the back-end (and before storing them in the cache).

In your vcl file do:

sub vcl_fetch {
  remove beresp.http.Cache-Control;
  set beresp.http.Cache-Control = "public";
}

You can choose to only do this for certain urls (wrap it in ( if req.url ~ "" ) logic) and do way more advanced stuff.




回答2:


Varnish ignores Cache-Control: nocache as per the documentation. Here is evidence confirming that:

http://drupal.org/node/1418908

To get that result, you should detect the header Cache-Control .nocache. from your backend, and then invalidate the cache, set the backend response to not cacheable, or issue max-age: 0 in the other header (I forget the name right now).




回答3:


[ivy] has good advice, and/but it gets a little complicated when you try to obey a servers intent for end user (browser) caching. I found this resource to be helpful in understanding a way to configure Varnish to hold onto a cache longer than a browser is instructed to...

https://www.varnish-cache.org/trac/wiki/VCLExampleLongerCaching



来源:https://stackoverflow.com/questions/9009966/how-to-set-varnish-cache-control-headers

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!