Re: Varnish Hash

2007-12-07 Thread Poul-Henning Kamp
In message [EMAIL PROTECTED], Ricardo N ewbery writes: In message [EMAIL PROTECTED], Erik writes: Just to make this clear, does varnish identify an object like this in vcl_hash? sub vcl_hash { set req.hash += req.url; set req.hash += req.http.host;

Varnish Hash

2007-12-06 Thread Erik
Just to make this clear, does varnish identify an object like this in vcl_hash? sub vcl_hash { set req.hash += req.url; set req.hash += req.http.host; hash; } / Erik ___ varnish-misc mailing

Re: Varnish Hash

2007-12-06 Thread Poul-Henning Kamp
In message [EMAIL PROTECTED], Erik writes: Just to make this clear, does varnish identify an object like this in vcl_hash? sub vcl_hash { set req.hash += req.url; set req.hash += req.http.host; hash; } Well, mostly. That is the primary

Re: Varnish Hash

2007-12-06 Thread Ricardo Newbery
On Dec 6, 2007, at 2:34 PM, Poul-Henning Kamp wrote: In message [EMAIL PROTECTED], Erik writes: Just to make this clear, does varnish identify an object like this in vcl_hash? sub vcl_hash { set req.hash += req.url; set req.hash += req.http.host;