Hi,<br><br>I am trying to remove all set-cookies from the backend but I still found Set-Cookie in the log (varnishlog -b). <br><br>I have the following setup:<br><br>sub vcl_fetch {<br>    .....<br>    .....<br>    unset beresp.http.set-cookie;<br>

}<br><br>and varnishlog -b shows something like this:<br><br>   16 RxHeader     b Set-Cookie: name=xyc; domain=.<a href="http://example.com">example.com</a>; path=/; expires=Sun, 09-Jan-2011 14:04:10 GMT<br><br>I am wondering how to completely remove the Set-Cookie. Currently my hitrate is only 80%, I think the set-cookie header is the main reason.<br>

<br>also what's the difference between <br>    unset beresp.http.set-cookie;<br>and <br>    remove beresp.http.set-cookie;<br><br><br>Thank you,<br><br>Vincent<br>