You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
Thehttp_codes_black_list is utilized to avoid caching the responses with the listed HTTP status codes.Defaults to all others than200.
Example:
'zf-http-cache' => [/* ... */'http_codes_black_list' => ['201','304','400','500'],// Whatever the other configurations, the responses with these HTTP codes won't be cached./* ... */],
Key:regex_delimiter
This key is used to enable the evaluation of the key as a regular expression.
It must contain the delimiter of the regular expression.
If you don't want to use regular expression in your configuration set this to null to avoid inutil parsing.
Regular expressions are tested in the very order they appear in the configuration, first matching wins.
Regexp wins over wildcard.
Caution: When this value is not empty and no litteral key corresponds to the current controller, a preg_match is used.