"
 
 
 
ASP.NET (snapshot 2017) Microsoft documentation and samples

Cache Tag Helper in ASP.NET Core MVC

By Peter Kellner

The Cache Tag Helper provides the ability to dramatically improve the performance of your ASP.NET Core app by caching its content to the internal ASP.NET Core cache provider.

The Razor View Engine sets the default expires-after to twenty minutes.

The following Razor markup caches the date/time:

<Cache>@DateTime.Now<Cache>

The first request to the page that contains CacheTagHelper will display the current date/time. Additional requests will show the cached value until the cache expires (default 20 minutes) or is evicted by memory pressure.

You can set the cache duration with the following attributes:

Cache Tag Helper Attributes


enabled

Attribute Type Valid Values
boolean “true” (default)
“false”

Determines whether the content enclosed by the Cache Tag Helper is cached. The default is true. If set to false this Cache Tag Helper will have no caching effect on the rendered output.

Example:

<Cache enabled="true">
    Current Time Inside Cache Tag Helper: @DateTime.Now
</Cache>

expires-on

Attribute Type Example Value
DateTimeOffset @new DateTime(2025,1,29,17,02,0)”

Sets an absolute expiration date. The following example will cache the contents of the Cache Tag Helper until 5:02 PM on January 29, 2025.

Example:

<Cache expires-on="@new DateTime(2025,1,29,17,02,0)">
    Current Time Inside Cache Tag Helper: @DateTime.Now
</Cache>

expires-after

Attribute Type Example Value
TimeSpan @TimeSpan.FromSeconds(120)”

Sets the length of time from the first request time to cache the contents.

Example:

<Cache expires-on="@TimeSpan.FromSeconds(120)">
    Current Time Inside Cache Tag Helper: @DateTime.Now
</Cache>

expires-sliding

Attribute Type Example Value
TimeSpan @TimeSpan.FromSeconds(60)”

Sets the time that a cache entry should be evicted if it has not been accessed.

Example:

<Cache expires-sliding="@TimeSpan.FromSeconds(60)">
    Current Time Inside Cache Tag Helper: @DateTime.Now
</Cache>

vary-by-header

Attribute Type Example Values
String “User-Agent”
“User-Agent,content-encoding”

Accepts a single header value or a comma-separated list of header values that trigger a cache refresh when they change. The following example monitors the header value User-Agent. The example will cache the content for every different User-Agent presented to the web server.

Example:

<Cache vary-by-header="User-Agent">
    Current Time Inside Cache Tag Helper: @DateTime.Now
</Cache>

vary-by-query

Attribute Type Example Values
String “Make”
“Make,Model”

Accepts a single header value or a comma-separated list of header values that trigger a cache refresh when the header value changes. The following example looks at the values of Make and Model.

Example:

<Cache vary-by-query="Make,Model">
    Current Time Inside Cache Tag Helper: @DateTime.Now
</Cache>

vary-by-route

Attribute Type Example Values
String “Make”
“Make,Model”

Accepts a single header value or a comma-separated list of header values that trigger a cache refresh when the route data parameter value(s) change. Example:

Startup.cs

Index.cshtml

<Cache vary-by-route="Make,Model">
    Current Time Inside Cache Tag Helper: @DateTime.Now
</Cache>

Attribute Type Example Values
String “.AspNetCore.Identity.Application”
“.AspNetCore.Identity.Application,HairColor”

Accepts a single header value or a comma-separated list of header values that trigger a cache refresh when the header values(s) change. The following example looks at the cookie associated with ASP.NET Identity. When a user is authenticated the request cookie to be set which triggers a cache refresh.

Example:

<Cache vary-by-cookie=".AspNetCore.Identity.Application">
    Current Time Inside Cache Tag Helper: @DateTime.Now
</Cache>

vary-by-user

Attribute Type Example Values
Boolean “true”
“false” (default)

Specifies whether or not the cache should reset when the logged-in user (or Context Principal) changes. The current user is also known as the Request Context Principal and can be viewed in a Razor view by referencing @User.Identity.Name.

The following example looks at the current logged in user.

Example:

<Cache vary-by-user="true">
    Current Time Inside Cache Tag Helper: @DateTime.Now
</Cache>

Using this attribute maintains the contents in cache through a log-in and log-out cycle. When using vary-by-user="true", a log-in and log-out action invalidates the cache for the authenticated user. The cache is invalidated because a new unique cookie value is generated on login. Cache is maintained for the anonymous state when no cookie is present or has expired. This means if no user is logged in, the cache will be maintained.


vary-by

Attribute Type Example Values
String @Model

Allows for customization of what data gets cached. When the object referenced by the attribute’s string value changes, the content of the Cache Tag Helper is updated. Often a string-concatenation of model values are assigned to this attribute. Effectively, that means an update to any of the concatenated values invalidates the cache.

The following example assumes the controller method rendering the view sums the integer value of the two route parameters, myParam1 and myParam2, and returns that as the single model property. When this sum changes, the content of the Cache Tag Helper is rendered and cached again.

Example:

Action:

Index.cshtml

<Cache vary-by="@Model"">
    Current Time Inside Cache Tag Helper: @DateTime.Now
</Cache>

priority

Attribute Type Example Values
CacheItemPriority “High”
“Low”
“NeverRemove”
“Normal”

Provides cache eviction guidance to the built-in cache provider. The web server will evict Low cache entries first when it’s under memory pressure.

Example:

<Cache priority="High">
    Current Time Inside Cache Tag Helper: @DateTime.Now
</Cache>

The priority attribute does not guarantee a specific level of cache retention. CacheItemPriority is only a suggestion. Setting this attribute to NeverRemove does not guarantee that the cache will always be retained. See Additional Resources for more information.

The Cache Tag Helper is dependent on the (xref:)memory cache service. The Cache Tag Helper adds the service if it has not been added.

Additional resources





Comments ( )
<00>  <01>  <02>  <03>  <04>  <05>  <06>  <07>  <08>  <09>  <10>  <11>  <12>  <13>  <14>  <15>  <16>  <17>  <18>  <19>  <20>  <21>  <22>  <23
Link to this page: //www.vb-net.com/AspNet-DocAndSamples-2017/aspnetcore/mvc/views/tag-helpers/built-in/cache-tag-helper.htm
<SITEMAP>  <MVC>  <ASP>  <NET>  <DATA>  <KIOSK>  <FLEX>  <SQL>  <NOTES>  <LINUX>  <MONO>  <FREEWARE>  <DOCS>  <ENG>  <CHAT ME>  <ABOUT ME>  < THANKS ME>