Given this configuration property:

Which page will be cached on the dispatcher?
Given the dispatcher configuration snippet provided in the image, we can understand the URL patterns that will be ignored (not cached) by the dispatcher. The configuration under /ignoreUrlParams shows patterns to match query parameters in the URLs:
/0001 { /glob '*' /type 'deny' } means that by default, all query parameters are ignored (not cached).
/0002 { /glob 'search' /type 'allow' } specifically allows caching for URLs with the 'search' parameter.
/0003 { /glob 'order' /type 'allow' } specifically allows caching for URLs with the 'order' parameter.
Based on this, let's evaluate the options:
A) /myproduct/myrecipe.html?search=searchparam --- This URL will not be cached because the 'search' parameter is allowed, but the actual value 'searchparam' does not match any allow pattern. B) /myproduct/myrecipe.html?search=s&order=asc&brand=ad --- This URL will not be cached because although 'search' and 'order' parameters are allowed, the 'brand' parameter is not allowed according to the configuration. C. /myproduct/myrecipe.html?brand=mybrand --- This URL will be cached because there are no allowed parameters, so the default deny does not apply, and the page can be cached without considering the 'brand' parameter.
Therefore, the page that will be cached on the dispatcher is the one in option C, as it does not contain any of the explicitly allowed query parameters ('search' or 'order'), and all other parameters are ignored by default.
Bambi
2 days agoLinette
7 days agoCary
12 days agoElli
17 days agoGalen
22 days agoAnnice
27 days agoRaylene
1 month agoRozella
1 month agoGladis
1 month agoDong
2 months agoRaina
2 months agoElvera
2 months agoWhitley
2 months agoGene
2 months agoBrock
2 months agoJanae
3 months agoLavonda
3 months agoGianna
3 months agoAleisha
3 months agoJulian
4 months agoChantell
4 months agoFreeman
4 months agoLakeesha
4 months agoTammara
4 months agoYolande
5 months ago