Despite the following being mentioned in the documentation, I don't know what the exact difference is in practice between "Ignore query strings" and "bypass caching for query strings".
From the doc:
Ignore query strings: Default mode. In this mode, the CDN point-of-presence (POP) node passes the query strings from the requestor to the origin server on the first request and caches the asset. All subsequent requests for the asset that are served from the POP ignore the query strings until the cached asset expires.
Bypass caching for query strings: In this mode, requests with query strings are not cached at the CDN POP node. The POP node retrieves the asset directly from the origin server and passes it to the requestor with each request.
If my url is: mydomain.com/articles?page=3
. Wouldn't this mean that the page query string is simply being ignored in both cases. What would be the difference in that case?