I have the url
...../suggest?callback=jsonp9999999999999&term=something
I would like to strip out callback=jsonp999999999999& from the url, cache the rest (...../suggest?term=something) and pass the complete URL (...../suggest?callback=jsonp9999999999998&term=something) again to the backend.
When a second request comes of the format (...../suggest?callback=jsonp000000000000&term=something) varnish must strip out callback=jsonp000000000000& check the cache for a hit and return the result from the cache.
Is this possible with inline C and VCL?