How it works
Query String Sort automatically rearranges query parameters alphabetically when constructing the cache key. This means:- Both URLs above resolve to the same cached file
- The cached file can be found regardless of parameter order
- You avoid duplicate cache entries for identical content
Enable Query String Sort
When to use it
Enable Query String Sort when:- Your application generates URLs with query parameters in varying orders
- You use dynamic image transformations (width, height, quality, etc.)
- You want to maximize cache efficiency for parameterized requests
This feature only affects how the cache key is constructed. The actual URL
sent to your origin remains unchanged.