Url in Sling
has following structure:
Also I have read following information aboutn dispatcher cache:
The Dispatcher always requests the document directly from the AEM instance in the following cases:
If the HTTP method is not GET. Other common methods are POST for form data and HEAD for the HTTP header.
If the request URI contains a question mark "?". This usually indicates a dynamic page, such as a search result, which does not need to be cached.
The file extension is missing. The web server needs the extension to determine the document type (the MIME-type).
The authentication header is set (this can be configured)
I have 2 misunderstandings:
Will
myurl.com/foo.jsp/parameter/values
comply with following rules:The file extension is missing. The web server needs the extension to determine the document type (the MIME-type).
?
- formulation Dispatcher always requests the document directly from the AEM instance doesn't guarantee that in the rest situations request will be cached but I want to be sure that my request will be cached.
P.S
Please provide concrete steps from the begining how to check that concrete url cashes or not.