vote up 1 vote down star

Is it possible to clear one action's cache from another action?

Let's say my Index action lists all my Widgets. There are lots of Widgets but new ones are not created very often. So I want to cache my Index action indefinitely but force it to render after a successful Create.

public class WidgetController : Controller
{
    [OutputCache(Duration = int.MaxValue, VaryByParam = "none")]
    public ActionResult Index()
    {
        return View(Widget.AllWidgets);
    }

    public ActionResult Create()
    {
        return View();
    }

    [AcceptVerbs(HttpVerbs.Post)]
    public ActionResult Create(string name)
    {
        Widget widget = new Widget(name);

        // Can I clear Index's cache at this point?
        // ClearCache("Index");

        return View(widget);
    }
}
flag

3 Answers

vote up 1 vote down check

HttpResponse.RemoveOutputCacheItem?

link|flag
Thanks, led me to the following question, which answered a bit more thoroughly: stackoverflow.com/questions/1288463/… – Lobstrosity Nov 2 at 15:25
vote up 0 vote down

IMHO if you call the Create action you won't hit the cache because you are just rendering a view and not redirecting to the Index action whose output has been cached.

link|flag
Right. I'm not concerned about caching Create. But when the POST Create action occurs, I want to programmatically clear Index's cache so that the next hit on Index will reflect the new Widget. – Lobstrosity Oct 29 at 13:34
vote up 1 vote down

Use a VaryByCustom property to expire the cache whenever a new Widget is added.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.