Click here to Skip to main content
15,867,851 members
Articles / Web Development / ASP.NET

Caching in ASP.NET

Rate me:
Please Sign up or sign in to vote.
4.79/5 (204 votes)
21 Feb 2004CPOL6 min read 702.4K   10.9K   214   73
An overview of caching in ASP.NET.

Introduction

The majority [if not all] of the pages in a dynamic website are dynamic. That is, pages that are created on user request. As we all know, dynamic web pages help to provide dynamic content, customized for the user requesting the page [e.g.: the user's home page]. Dynamic pages also help provide dynamic content fetched from a changing data store without the need for the administrator to change the page content every time something changes in the data store [e.g.: Listing of books in a publisher's website]. The disadvantage is the overhead in creating the pages for every user request.

To overcome this, some websites have page creation engines which create all pages in one go and save them as HTML pages which are then served to the users. But this will only help in scenarios where the page content is the same for all requests [user-independent] as in the second example above. The listing of books is the same irrespective of the user requesting the page. Even if there is provision for listing books category wise by providing different category ID values through the querystring, the page output for a particular category of books is the same for all users.

ASP.NET provides support for "caching" which will help us solve this problem to a great extend. It can cache [store in memory] the output generated by a page and will serve this cached content for future requests. And this is useful only in the second scenario described earlier, where the page content is the same for all requests [user-independent]. The caching feature is customizable in various ways and we will see how we can do that as we go through this article.

Caching a page

In order to cache a page's output, we need to specify an @OutputCache directive at the top of the page. The syntax is as shown below:

ASP.NET
<%@ OutputCache Duration=5 VaryByParam="None" %>

As you can see, there are two attributes to this directive. They are:

  • Duration - The time in seconds of how long the output should be cached. After the specified duration has elapsed, the cached output will be removed and page content generated for the next request. That output will again be cached for 5 seconds and the process repeats.
  • VaryByParam - This attribute is compulsory and specifies the querystring parameters to vary the cache.

    In the above snippet, we have specified the VaryByParam attribute as None which means the page content to be served is the same regardless of the parameters passed through the querystring [see Example 1 in the sample download].

    If there are two requests to the same page with varying querystring parameters, e.g.: .../PageCachingByParam.aspx?id=12 and .../PageCachingByParam.aspx?id=15] and separate page content is generated for each of them, the directive should be:

    ASP.NET
    <%@ OutputCache Duration=5 VaryByParam="id" %>

    The page content for the two requests will each be cached for the time specified by the Duration attribute [see Example 2 in the sample download].

    To specify multiple parameters, use semicolon to separate the parameter names. If we specify the VaryByParam attribute as *, the cached content is varied for all parameters passed through the querystring.

Some pages generate different content for different browsers. In such cases, there is provision to vary the cached output for different browsers. The @OutputCache directive has to be modified to:

ASP.NET
<%@ OutputCache Duration=5 VaryByParam="id" VaryByCustom="browser" %>

This will vary the cached output not only for the browser but also its major version. I.e., IE5, IE 6, Netscape 4, Netscape 6 will all get different cached versions of the output.

Caching page fragments

Sometimes we might want to cache just portions of a page. For example, we might have a header for our page which will have the same content for all users. There might be some text/image in the header which might change everyday. In that case, we will want to cache this header for a duration of a day.

The solution is to put the header contents into a user control and then specify that the user control content should be cached. This technique is called fragment caching.

To specify that a user control should be cached, we use the @OutputCache directive just like we used it for the page.

ASP.NET
<%@ OutputCache Duration=10 VaryByParam="None" %>

With the above directive, the user control content will be cached for the time specified by the Duration attribute [10 secs]. Regardless of the querystring parameters and browser type and/or version, the same cached output is served. [See Example 3 in the download for a demonstration].

Data Caching

ASP.NET also supports caching of data as objects. We can store objects in memory and use them across various pages in our application. This feature is implemented using the Cache class. This cache has a lifetime equivalent to that of the application. Objects can be stored as name value pairs in the cache. A string value can be inserted into the cache as follows:

C#
Cache["name"]="Smitha";

The stored string value can be retrieved like this:

C#
if (Cache["name"] != null)
    Label1.Text= Cache["name"].ToString();

[See example 4 for an illustration.]

To insert objects into the cache, the Add method or different versions of the Insert method of the Cache class can be used. These methods allow us to use the more powerful features provided by the Cache class. One of the overloads of the Insert method is used as follows:

C#
Cache.Insert("Name", strName, 
    new CacheDependency(Server.MapPath("name.txt"), 
    DateTime.Now.AddMinutes(2), TimeSpan.Zero);

The first two parameters are the key and the object to be inserted. The third parameter is of type CacheDependency and helps us set a dependency of this value to the file named name.txt. So whenever this file changes, the value in the cache is removed. We can specify null to indicate no dependency. The fourth parameter specifies the time at which the value should be removed from cache. [See example 5 for an illustration.] The last parameter is the sliding expiration parameter which shows the time interval after which the item is to be removed from the cache after its last accessed time.

The cache automatically removes the least used items from memory, when system memory becomes low. This process is called scavenging. We can specify priority values for items we add to the cache so that some items are given more priority than others:

C#
Cache.Insert("Name", strName, 
    new CacheDependency(Server.MapPath("name.txt"), 
    DateTime.Now.AddMinutes(2), TimeSpan.Zero, 
    CacheItemPriority.High, null);

The CacheItemPriority enumeration has members to set various priority values. The CacheItemPriority.High assigns a priority level to an item so that the item is least likely to be deleted from the cache.

Points of interest

  • If there are old ASP pages in your website which use the Response.Expires property to cache page output, they can be retained as such. ASP.NET supports this property as well.
  • The Insert method of the Cache class will overwrite any existing item with the same key name.
  • The CacheItemPriority.NotRemovable priority value can be used with Cache.Insert method to set the priority level of an item so that the item will not be removed from the cache during scavenging.

Conclusion

In this article, I have tried to provide an overview of the various options available for caching in ASP.NET. Elaborate explanations and details have not been provided to keep the article short.

Fragment caching can be done in a nested fashion with child controls having caching enabled. How to do this has not been covered as I have not tried it out myself. So also various overloads of the Insert method of the Cache class has not been discussed here. I hope this article will be a good starting point for the readers to explore into the details of a wonderful feature available in ASP.NET.

Downloads

The sample ASP.NET application illustrates the various features we went through in this article. Use the index.htm to get a listing of all the illustrations.

History

  • February 23, 2004 - first version.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
The Code Project
United States United States
Smitha is a software developer, and has been in the industry since January 2000. She has experience in ASP.NET, C#, Windows Forms, Visual Basic, ASP, JavaScript, VBScript, and HTML. She has been with CodeProject since 2003 and currently works as Senior Editor.

In her free time, she tries out new dishes, reads a little, and puts together jigsaw puzzles. Originally from Trivandrum, Smitha currently lives with her husband and fellow CP'ian Nish [^] and her son Rohan in Columbus, Ohio.

Comments and Discussions

 
GeneralMy vote of 5 Pin
skambo9-Mar-14 17:15
skambo9-Mar-14 17:15 
GeneralMy vote of 1 Pin
Member 843857920-Feb-14 19:16
Member 843857920-Feb-14 19:16 
Questionnice article Pin
RajlaxmiDora2-Feb-14 3:42
RajlaxmiDora2-Feb-14 3:42 
QuestionFor caching interview question Pin
santosh068321-Jan-14 7:24
santosh068321-Jan-14 7:24 
GeneralMy vote of 2 Pin
rajeshcc22-Nov-13 14:43
rajeshcc22-Nov-13 14:43 
QuestionCaching Duration Pin
Abdul Quader Mamun7-Nov-13 1:17
Abdul Quader Mamun7-Nov-13 1:17 
AnswerRe: Caching Duration Pin
Smitha Nishant7-Nov-13 1:35
protectorSmitha Nishant7-Nov-13 1:35 
GeneralMy vote of 4 Pin
kiran shettar27-Nov-12 3:42
kiran shettar27-Nov-12 3:42 
GeneralMy vote of 3 Pin
Chamara Janaka23-Aug-12 2:38
Chamara Janaka23-Aug-12 2:38 
GeneralRe: My vote of 3 Pin
Joezer BH4-Feb-13 4:36
professionalJoezer BH4-Feb-13 4:36 
GeneralNice Article. Pin
Lokesh_193744422-Aug-12 4:03
Lokesh_193744422-Aug-12 4:03 
Generalquestion Pin
Member 92581126-Aug-12 20:45
Member 92581126-Aug-12 20:45 
Questionmy +5 Pin
Raje_28-Jul-12 1:29
Raje_28-Jul-12 1:29 
GeneralMy vote of 5 Pin
super sharepoint4-Jul-12 8:48
super sharepoint4-Jul-12 8:48 
GeneralRe: My vote of 5 Pin
kamlesh01116-Aug-12 21:50
kamlesh01116-Aug-12 21:50 
GeneralMy vote of 5 Pin
Ashwini K Singh2-Jun-12 22:38
Ashwini K Singh2-Jun-12 22:38 
GeneralMy vote of 5 Pin
Shanmugam R P21-Feb-12 22:45
Shanmugam R P21-Feb-12 22:45 
GeneralMy vote of 5 Pin
Manoj Kumar Choubey30-Jan-12 22:48
professionalManoj Kumar Choubey30-Jan-12 22:48 
GeneralMy vote of 5 Pin
savishwasrao25-Dec-11 4:51
savishwasrao25-Dec-11 4:51 
GeneralMy vote of 5 Pin
Rakesh Aytha23-Nov-11 17:04
Rakesh Aytha23-Nov-11 17:04 
GeneralMy vote of 5 Pin
Shanmugam R P18-Oct-11 2:44
Shanmugam R P18-Oct-11 2:44 
GeneralMy vote of 5 Pin
dileep198318-May-11 1:16
dileep198318-May-11 1:16 
QuestionQuery Pin
Member 47205917-May-11 17:29
Member 47205917-May-11 17:29 
Generallimitations Pin
lee 32-Feb-11 19:08
lee 32-Feb-11 19:08 
GeneralGreat !!! Pin
MVenugopal15-Oct-10 11:46
MVenugopal15-Oct-10 11:46 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.