I'm using Varnish 2.0.6 and I'm having trouble with finding good documentation to write the vcl_hash function.

I need to remove a few parameters from the URL of my API before caching. In particular a userid that is passed to track analytics but not to change the results.

URL: /api/browse?node=123&userid=3432432564363

I wrote this but it's not cleat to me if the vcl_hash function needs to end with 'hash' or 'return(hash)' or NOTHING and if I need to handle all the cases or just my special case. It's not clear to me if I'm overwriting method or I'm extending it.

I have:

sub vcl_hash {
  if (req.url ~ "^/api/browse") {
    set req.hash += regsuball(req.url,"&userid=([A-z0-9]+)","");
  } 
  hash;
}

Is it missing something?

link|improve this question

45% accept rate
feedback

1 Answer

I tested a few things, and this one seems to work:

sub vcl_hash {
  if (req.url ~ "^/api/browse") {
    set req.hash += regsuball(req.url,"&userid=([A-z0-9]+)","");
  } else {
    set req.hash += req.url;
  }
  set req.hash += req.http.host;
  hash;
}

So it looks like you also have to handle the default case when you rewrite vcl_hash.

link|improve this answer
I still don't understand why I have to use "req.hash +=" like I'm appending to some existing value. What value?? – robsf Dec 14 '11 at 2:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.