Você pode configurá-lo para fazer isso, classificar. Por padrão, não (e não deveria).
I have a site with many hostnames, how do I keep them from multiplying the cache?
You can do this by normalizing the "Host" header for all your hostnames. Here's a VCL example:
if (req.http.host ~ "^(www.)?example.com") { set req.http.host = "example.com"; }