- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当我们在 varnish 4.1 服务器后面的应用程序上运行负载测试时,我们注意到在服务器错误(Cache-Control: no-cache
返回 500)之后,我们在后端遇到了负载高峰。
在 Varnish 配置中潜水后,我们发现那条线 https://github.com/varnishcache/varnish-cache/blob/master/bin/varnishd/builtin.vcl#L157
:
sub vcl_backend_response {
if (bereq.uncacheable) {
return (deliver);
} else if (beresp.ttl <= 0s ||
beresp.http.Set-Cookie ||
beresp.http.Surrogate-control ~ "no-store" ||
(!beresp.http.Surrogate-Control &&
beresp.http.Cache-Control ~ "no-cache|no-store|private") ||
beresp.http.Vary == "*") {
# Mark as "Hit-For-Miss" for the next 2 minutes
set beresp.ttl = 120s;
set beresp.uncacheable = true;
}
return (deliver);
}
no-cache
,则在接下来的 2 分钟内将无法缓存,
即使下一次调用后端返回有效的可缓存响应 。
最佳答案
关于caching - Varnish 命中率是多少,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42898378/
我已经使用Wordpress在服务器中为虚拟主机配置了Varnish。 当我尝试: curl -I http://sportsmadeinusa.com/ 我的服务器响应: X-Varnish: 14
只有当我使用此 php sql 调用获得我的总命中率时,我如何才能获得昨天的 php 命中率。这是代码: SELECT *, COUNT(visitor_tracking.model_id)
我有一个 I/O 跟踪文件,其中包含以下字段('asu'、'block_address'、'size'、'opcode'、'time_stamp')。数据看起来像这样。 (超过 500 万行) 0,2
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 要求我们推荐或查找工具、库或最喜欢的场外资源的问题对于 Stack Overflow 来说是偏离主题的,
我是一名优秀的程序员,十分优秀!