
varnish-bugs at varnish-cache
Dec 13, 2011, 8:26 AM
Post #1 of 4
(231 views)
Permalink
|
|
#1073: req.hash_always_miss should imply req.hash_ignore_busy
|
|
#1073: req.hash_always_miss should imply req.hash_ignore_busy ----------------------+----------------------------------------------------- Reporter: kristian | Owner: Type: defect | Status: new Priority: normal | Milestone: Component: varnishd | Version: trunk Severity: normal | Keywords: ----------------------+----------------------------------------------------- Currently, req.hash_always_miss does not imply that busy objects are ignored, which means you can actually get a cache hit even though hash_always_miss is set. Workaround: {{{ vcl_recv: if (req.hash_always_miss) { set req.hash_ignore_busy = true; } }}} -- Ticket URL: <https://www.varnish-cache.org/trac/ticket/1073> Varnish <https://varnish-cache.org/> The Varnish HTTP Accelerator _______________________________________________ varnish-bugs mailing list varnish-bugs [at] varnish-cache https://www.varnish-cache.org/lists/mailman/listinfo/varnish-bugs
|