GateKiller
GateKiller

Reputation: 75869

Clearing Page Cache in ASP.NET

For my blog I am wanting to use the Output Cache to save a cached version of a perticular post for around 10 minutes, and thats fine...

<%@OutputCache Duration="600" VaryByParam="*" %>

However, if someone posts a comment, I want to clear the cache so that the page is refreshed and the comment can be seen.

How do I do this in ASP.Net C#?

Upvotes: 53

Views: 113176

Answers (9)

AnonymousCoder
AnonymousCoder

Reputation: 31

First off, make sure you've set up our caching properly. You've got the right idea with the OutputCache directive in your ASPX file. This line:

 <%@ OutputCache Duration="600" VaryByParam="*" %>

tells ASP.NET to cache the page for 10 minutes (600 seconds), but it'll vary the cache based on different parameters, ensuring each version of the page is stored separately in the cache.

Now, when a new comment is posted, you need to bust that cache so the page refreshes and everyone can see the latest comment. To do this, we'll use a bit of C# code in your code-behind file (probably something like YourPageName.aspx.cs).

Inside your code-behind, you'll need to call the HttpResponse.RemoveOutputCacheItem method to clear the cache for the specific page. You'll want to call this method whenever a new comment is posted.

Here's a basic example of how you might do it:

protected void PostCommentButton_Click(object sender, EventArgs e)
{
    // Code to save the comment to the database goes here...

    // Now, let's clear the cache for the current page
    string pageUrl = HttpContext.Current.Request.Url.AbsolutePath;
    HttpResponse.RemoveOutputCacheItem(pageUrl);
}

In this code snippet, PostCommentButton_Click is the event handler for when someone submits a new comment. After saving the comment to your database (you'll need to add that part), we get the current page's URL using HttpContext.Current.Request.Url.AbsolutePath. Then, we call HttpResponse.RemoveOutputCacheItem with the page URL to clear the cache for that specific page.

Upvotes: 0

Julien
Julien

Reputation: 121

HttpRuntime.Close() .. I try all method and this is the only that work for me

Upvotes: -1

Mohd Adil
Mohd Adil

Reputation: 31

On the master page load event, please write the following:

Response.Cache.SetExpires(DateTime.UtcNow.AddMinutes(-1));
Response.Cache.SetCacheability(HttpCacheability.NoCache);
Response.Cache.SetNoStore();

and in the logout button click:

Session.Abandon();
Session.Clear();

Upvotes: 3

Kevin
Kevin

Reputation: 1743

The above are fine if you know what pages you want to clear the cache for. In my instance (ASP.NET MVC) I referenced the same data from all over. Therefore, when I did a [save] I wanted to clear cache site wide. This is what worked for me: http://aspalliance.com/668

This is done in the context of an OnActionExecuting filter. It could just as easily be done by overriding OnActionExecuting in a BaseController or something.

HttpContextBase httpContext = filterContext.HttpContext;
httpContext.Response.AddCacheItemDependency("Pages");

Setup:

protected void Application_Start()
{
    HttpRuntime.Cache.Insert("Pages", DateTime.Now);
}

Minor Tweak: I have a helper which adds "flash messages" (Error messages, success messages - "This item has been successfully saved", etc). In order to avoid the flash message from showing up on every subsequent GET, I had to invalidate after writing the flash message.

Clearing Cache:

HttpRuntime.Cache.Insert("Pages", DateTime.Now);

Hope this helps.

Upvotes: 41

Brian Scott
Brian Scott

Reputation: 9361

why not use the sqlcachedependency on the posts table?

sqlcachedependency msdn

This way your not implementing custom cache clearing code and simply refreshing the cache as the content changes in the db?

Upvotes: 1

Reputation:

Using Response.AddCacheItemDependency to clear all outputcaches.

  public class Page : System.Web.UI.Page
  {
    protected override void OnLoad(EventArgs e)
    {
        try
        {
            string cacheKey = "cacheKey";
            object cache = HttpContext.Current.Cache[cacheKey];
            if (cache == null)
            {
              HttpContext.Current.Cache[cacheKey] = DateTime.UtcNow.ToString();
            }

            Response.AddCacheItemDependency(cacheKey);
        }
        catch (Exception ex)
        {
            throw new SystemException(ex.Message);
        }

        base.OnLoad(e);
    }     
 }



  // Clear All OutPutCache Method    

    public void ClearAllOutPutCache()
    {
        string cacheKey = "cacheKey";
        HttpContext.Cache.Remove(cacheKey);
    }

This is also can be used in ASP.NET MVC's OutputCachedPage.

Upvotes: 6

GateKiller
GateKiller

Reputation: 75869

I've found the answer I was looking for:

HttpResponse.RemoveOutputCacheItem("/caching/CacheForever.aspx");

Upvotes: 49

palmsey
palmsey

Reputation: 5832

If you change "*" to just the parameters the cache should vary on (PostID?) you can do something like this:

//add dependency
string key = "post.aspx?id=" + PostID.ToString();
Cache[key] = new object();
Response.AddCacheItemDependency(key);

and when someone adds a comment...

Cache.Remove(key);

I guess this would work even with VaryByParam *, since all requests would be tied to the same cache dependency.

Upvotes: 1

John Christensen
John Christensen

Reputation: 5030

Hmm. You can specify a VaryByCustom attribute on the OutputCache item. The value of this is passed as a parameter to the GetVaryByCustomString method that you can implement in global.asax. The value returned by this method is used as an index into the cached items - if you return the number of comments on the page, for instance, each time a comment is added a new page will be cached.

The caveat to this is that this does not actually clear the cache. If a blog entry gets heavy comment usage, your cache could explode in size with this method.

Alternatively, you could implement the non-changeable bits of the page (the navigation, ads, the actual blog entry) as user controls and implement partial page caching on each of those user controls.

Upvotes: 1

Related Questions