Connecting to 127.0.0.1:8083... connected.
HTTP request sent, awaiting response... 200 OK ----> varnishlog shows cache hit, but this step waits about 30 seconds

I'm afraid that provided information isnt enough - you should post the full varnishlog for that particular request (also 'varnishstat -1' output could help to indicate the issue).


p.s. a simple step for more easy debuging would be to add a cache hit header. For example:

sub vcl_deliver {
       if (obj.hits > 0) {
               set resp.http.X-Cache = "HIT";
       }
       return (deliver);
}

this way you can run 'wget -S yoururl' and see if the cache is a hit on the fly.


rr

_______________________________________________
varnish-misc mailing list
[email protected]
https://www.varnish-cache.org/lists/mailman/listinfo/varnish-misc

Reply via email to