Cache dependencies

Cache dependencies inform the system whenever the source data of a cached entity changes and prompt it to revoke the corresponding cache entry.

To create dependencies between cached data and their source representation, the system uses dummy cache keys. Dummy keys are cache items without any data that target objects or groups of objects. Each time an object is modified, the system touches all dummy keys that correspond to the object, which clears all cache items targeting at least one of the touched keys.

For example, assume an Articles page with the /Articles path in the content tree of a website channel named News. On this page, there are short snippets of various articles, placed as the page’s children (/Articles/Best cities to live in, /Articles/New theme park in Georgia, etc.). As a good practice to prevent excessive database load and increase overall performance, all article snippets displayed on the page are cached.

Whenever any of the child pages changes, the cache needs to be notified and revoke the cached article snippets. Otherwise it will continue displaying outdated content. To notify the cache, we introduce a dummy cache key dependency on the key webpageitem|bychannel|News|childrenofpath|/Articles when caching the data. With this dependency set any change to child pages on the tree path /Articles under the channel News removes the cached article snippet from the cache.

Dummy cache key types

The following sections list available dummy cache keys for objects in the system.

Avoid setting dependencies on all objects of a particular type via |all. Clearing the cache every time any object of a given type changes has a high chance of significantly reducing the effectivness of your caching solution. Always prefer targeting specific objects either via code name or GUID.

Reusable content items

The following cache keys are touched when the Published version of the target reusable content item changes.

If you need to set cache dependencies for other workflow states, use the contentitem|allstates|* prefix. Where * can be substituted for any expression from the table that begins with contentitem.  

Dependency on

Cache key format

Description

All items

contentitem|all

Example:

contentitem|all

Targets all items in the system.

ID

contentitem|byid|<ID>

Example:

contentitem|byid|53 

Targets an item by its database ID and optionally language variant.

languageName must match the code name of a language registered in the Languages application.

ID and language variant

contentitem|byid|<ID>|<languageName>

Example:

contentitem|byid|53|czech 

Code name 

contentitem|byname|<codeName>

Example:

contentitem|byname|TheArtOfCoffeeCupping-pzodajb5 

Targets an item by its code name and optionally language variant.

Code names of content items can be found on the Properties tab when editing items in the Content hub application.

languageName must match the code name of a language registered in the Languages application.

Code name and language variant

contentitem|byname|<codeName>|<languageName>

Example:

contentitem|byname|TheArtOfCoffeeCupping-pzodajb5|czech 

GUID

contentitem|byguid|<GUID>

Example:

contentitem|byguid|affc44f3-... 

Targets an item by its GUID and optionally language variant.

languageName must match the code name of a language registered in the Languages application.

GUID and language variant

contentitem|<GUID>|<languageName>

Example:

contentitem|byguid|affc44f3-...|czech 

Content type

contentitem|bycontenttype|<contentType>

Example:

contentitem|bycontenttype|Medio.Clinic 

Targets all items of the given content type and optionally language variant.

contentType must match the full code name (namespace and name) of the targeted content type.

languageName must match the code name of a language registered in the Languages application.

Content type and language variant

contentitem|bycontenttype|<contentType>|<languageName>

Example:

contentitem|bycontenttype|Medio.Clinic|czech 

Pages

The following cache keys are touched when the Published version of the target page changes.

If you need to set cache dependencies for other workflow states, use the webpageitem|allstates|* prefix. Where * can be substituted for any expression that begins with webpageitem from the table.

Dependency on

Cache key format

Description

All

webpageitem|all

Example:

webpageitem|all 

Targets all pages in the system.

All in website channel

webpageitem|bychannel|<channelName>|all

Example:

webpageitem|bychannel|MyChannel 

Targets all pages under the specified website channel.

ID

webpageitem|byid|<ID>

Example:

webpageitem|byid|53 

Targets a page by it’s database ID and optionally language variant.

languageName must match the code name of a language registered in the Languages application.

ID and language variant

webpageitem|byid|<ID>|<languageName>

Example:

webpageitem|byid|53|czech 

Code name 

webpageitem|byname|<codeName>

Example:

webpageitem|byname|TheArtOfCoffeeCupping-pzodajb5 

Targets a page by its code name and optionally language variant.

The code name of a page can be found on the Properties tab when viewing pages under website channels.

languageName must match the code name of a language registered in the Languages application.

Code name and language variant

webpageitem|byname|<codeName>|<languageName>

Example:

webpageitem|byname|TheArtOfCoffeeCupping-pzodajb5|czech 

GUID

webpageitem|byguid|<GUID>

Example:

webpageitem|byguid|affc44f3-... 

Targets an item by its GUID and optionally language variant.

languageName must match the code name of a language registered in the Languages application.

GUID and language variant

webpageitem|byguid|<GUID>|<languageName>

Example:

webpageitem|byguid|affc44f3-...|czech 

Content type in website channel

webpageitem|bychannel|<channelName>|bycontenttype|<contentType>

Example:

webpageitem|bychannel|MyChannel|bycontenttype|My.Article 

Targets all pages of the specified content type and optionally language variant in the given channel.

contentType must match the full code name (namespace and name) of the targeted content type.

languageName must match the code name of a language registered in the Languages application.

Content type in website channel and language variant

webpageitem|bychannel|<channelName>|bycontenttype|<contentType>|<languageName>

Example:

webpageitem|bychannel|MyChannel|bycontenttype|My.Article|czech 

Page path in website channel

webpageitem|bychannel|<channelName>|bypath|<pagePath>

Example:

webpageitem|bychannel|MyChannel|bypath|/Home 

Targets a page with the specified page path, channel, and optionally language variant.

pagePath must be a valid tree path.

languageName must match the code name of a language registered in the Languages application.

Changing a page’s path touches both the old and the new bypath dependency.

Page path and language variant in website channel

webpageitem|bychannel|<channelName>|bypath|<pagePath>|<languageName>

Example:

webpageitem|bychannel|MyChannel|bypath|/Home|greek 

Page path children in website channel

webpageitem|bychannel|<channelName>|childrenofpath|<pagePath>

Example:

webpageitem|bychannel|MyChannel|childrenofpath|/Articles 

Targets all children on all sublevels of the specified page path. Optionally targets only specified language variants.

pagePath must be a valid tree path.

languageName must match the code name of a language registered in the Languages application.

Page path children of language variant in website channel

webpageitem|bychannel|<channelName>|childrenofpath|<pagePath>|<languageName>

Example:

webpageitem|bychannel|MyChannel|childrenofpath|/Articles|greek 

Media files

Dependency on

Cache key format

Example

Description

GUID

mediafile|<guid>
mediafile|preview|<guid>

mediafile|1ced44f3-f2fc- …
mediafile|preview|1ced44f3-f2fc- …

Cache dependencies can only target media library files using their GUID.

Settings

Dependency on

Cache key format

Description

Code name

cms.settingskey|<settingCodeName>

Targets the settings specified by the given code name.

General objects

Dependency on

Cache key format

Example

Description

All

<object type>|all

cms.user|all

Targets all administration users in the system.

ID

<object type>|byid|<id>

cms.user|byid|53

Targets the administration user with the specific ID.

Code name

<object type>|byname|<code name>

cms.user|byname|administrator

Targets the administration user with the specific code name.

GUID

<object type>|byguid|<guid>

cms.user|byguid|1ced44f3-f2fc- …

Targets the administration user with the specific GUID.

Dependencies on form data records

The system currently does not touch any dummy cache keys when changes occur for data submitted via forms.

As a workaround, developers can prepare custom event handlers for BizFormItemEvents. Use the handler method to touch a custom cache key, and then enter the key into your cache dependencies. For example:



private void FormItem_InsertAfterHandler(object sender, BizFormItemEventArgs e)
{
    // Touches a custom cache key, for example: "customformdata|bizform.contactus"
    CacheHelper.TouchKey("customformdata|" + e.Item.BizFormClassName);
}