Varnish Cache-默认 TTL?

Varnish Cache-默认 TTL?

我发现我可以在我的 VCL 文件中按如下方式设置 Varnish 中的 TTL:

sub vcl_fetch {
    # 1 minute
    set obj.ttl = 1m;
}

但是默认设置是什么(假设后端服务器没有设置缓存控制标头)?

答案1

这是在默认模板中:

sub vcl_fetch {
    if (beresp.ttl <= 0s ||
        beresp.http.Set-Cookie ||
        beresp.http.Vary == "*") {
                /*
                 * Mark as "Hit-For-Pass" for the next 2 minutes
                 */
                set beresp.ttl = 120 s;
                return (hit_for_pass);
    }
    return (deliver);
}

所以,120秒。

答案2

默认 TTL 可以通过命令行开关通过 varnishd 命令传递-t,并且可能来自文件系统上的属性文件。在我查看的 CentOS 系统上,它是使用DEFAULT_TTLfrom设置的/etc/sysconfig/varnish

你可以使用 varnishadm 查看实时设置,如下所示:

varnishadm param.show default_ttl

实际上,遵循默认的 VCL 逻辑与不可缓存的对象有关。

  sub vcl_fetch {
      if (beresp.ttl <= 0s ||
          beresp.http.Set-Cookie ||
          beresp.http.Vary == "*") {
                  /*
                   * Mark as "Hit-For-Pass" for the next 2 minutes
                   */
                  set beresp.ttl = 120 s;
                  return (hit_for_pass);
      }
      return (deliver);
  }

意思是“如果对象不可缓存 - 将此对象的客户端请求直接同时传递到后端 2 分钟,不要将它们排队”

阅读更多https://stackoverflow.com/questions/12691489/varnish-hit-for-pass-means

相关内容