cacheId


Controls which query parameters, headers, and cookies are included in or excluded from the cache key identifier.

Note that this behavior executes differently than usual within rule trees. Applying a set of cache​Id behaviors within the same rule results in a system of forming cache keys that applies independently to the rule's content. If any cache​Id behaviors are present in a rule, any others specified in parent rules or prior executing sibling rules no longer apply. Otherwise for any rule that lacks a cache​Id behavior, the set of behaviors specified in an ancestor or prior sibling rule determines how to form cache keys for that content.

OptionTypeDescriptionRequires
ruleenum

Specifies how to modify the cache ID.

{"displayType":"enum","options":["INCLUDE_QUERY_PARAMS","INCLUDE_COOKIES","INCLUDE_HEADERS","EXCLUDE_QUERY_PARAMS","INCLUDE_ALL_QUERY_PARAMS","INCLUDE_VARIABLE","INCLUDE_URL"],"tag":"select"}
INCLUDE_​QUERY_​PARAMS

Includes the specified set of query parameters when forming a cache ID.

INCLUDE_​COOKIES

Includes specified cookies in the cache ID.

INCLUDE_​HEADERS

Includes specified HTTP headers in the cache ID.

EXCLUDE_​QUERY_​PARAMS

Excludes the specified set of query parameters when forming a cache ID.

INCLUDE_​ALL_​QUERY_​PARAMS

Includes all query parameters when forming a cache ID.

INCLUDE_​VARIABLE

Includes a specific user variable in the cache ID.

INCLUDE_​URL

Includes the full URL, the same as the default without the cacheid behavior.

include​Valueboolean

Includes the value of the specified elements in the cache ID. Otherwise only their names are included.

rule is either: INCLUDE_​COOKIES, INCLUDE_​QUERY_​PARAMS, INCLUDE_​HEADERS
{"displayType":"boolean","tag":"input","type":"checkbox"}
{"if":{"attribute":"rule","op":"in","value":["INCLUDE_COOKIES","INCLUDE_QUERY_PARAMS","INCLUDE_HEADERS"]}}
optionalboolean

Requires the behavior's specified elements to be present for content to cache. When disabled, requests that lack the specified elements are still cached.

rule is either: INCLUDE_​COOKIES, INCLUDE_​QUERY_​PARAMS, INCLUDE_​HEADERS, EXCLUDE_​QUERY_​PARAMS
{"displayType":"boolean","tag":"input","type":"checkbox"}
{"if":{"attribute":"rule","op":"in","value":["INCLUDE_COOKIES","INCLUDE_QUERY_PARAMS","INCLUDE_HEADERS","EXCLUDE_QUERY_PARAMS"]}}
elementsstring array

Specifies the names of the query parameters, cookies, or headers to include or exclude from the cache ID.

rule is either: INCLUDE_​COOKIES, INCLUDE_​QUERY_​PARAMS, INCLUDE_​HEADERS, EXCLUDE_​QUERY_​PARAMS
{"displayType":"string array","tag":"input","todo":true}
{"if":{"attribute":"rule","op":"in","value":["INCLUDE_COOKIES","INCLUDE_QUERY_PARAMS","INCLUDE_HEADERS","EXCLUDE_QUERY_PARAMS"]}}
variable​Namestring (variable name)

Specifies the name of the variable you want to include in the cache key.

rule is INCLUDE_​VARIABLE
{"displayType":"string","tag":"input","type":"text"}
{"if":{"attribute":"rule","op":"eq","value":"INCLUDE_VARIABLE"}}