Caching of query parameters
When receiving a request for a URL, the page cache considers the entirety of the URL, including GET
parameters. As a result, the page cache will identify example.com/?a=1&b=1
as different from example.com?b=1&a=1
and cache each variant separately. This caching behavior provides a more scalable method for serving variations of a page to specific user groups.