1
  1. 如果后端发送标头,Nginx 可以缓存请求吗?也许包括TTL?
  2. 可以使用请求使缓存无效吗?以饼干为例?

我想从应用程序的逻辑而不是从 nginx 配置文件控制缓存,并且不要让请求到达 apache/php。

4

1 回答 1

2

http://wiki.nginx.org/HttpCoreModule#Variables提供以下内容:

$sent_http_HEADER

The value of the HTTP response header HEADER when converted to lowercase and
with 'dashes' converted to 'underscores', 
e.g. $sent_http_cache_control, $sent_http_content_type...; 


$cookie_COOKIE

The value of the cookie COOKIE; 

如果将它与 if 块结合使用,则可以执行以下操作:

if ($sent_http_your_added_header = "") { 
  proxy_cache your_cache_zone;
}

if ($cookie_BYPASS = "1") {
  proxy_bypass $cookie_BYPASS;
}

注意:如果您的 BYPASS cookie 具有 1 或 0 值,您实际上可以忘记 if 并使用 $cookie_BYPASS,请参阅http://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_cache_bypass

就缓存时间而言,正如http://nginx.org/en/docs/http/ngx_http_proxy_module.html#proxy_cache_valid解释的那样,nginx 响应“X-Accel-Expires”、“Expires”和“Cache-Control”标头(除非你告诉它不要使用 proxy_ignore_headers 指令)

于 2012-09-13T17:02:56.897 回答