I've got a lot of requests that avoid caching because all of their list permutations are listed, ie:
http://.....&var=a,b,c
http://.....&var=a,c,b
http://.....&var=b,a,c
http://.....&var=b,c,a
http://.....&var=c,a,b
http://.....&var=c,b,a
Is there a clever way to hash these to the same value? Is the easiest way to sub in the sorted version of the querystring value?