vote up 2 vote down star
5

I am using the standared outputcache tag in my MVC app which works great but I need to force it to be dumped at certain times. How do I achieve this? The page that gets cached is built from a very simple route {Controller}/{PageName} - so most pages are something like this: /Pages/About-Us

Here is the output cache tag that is at the top of my .aspx v iew page just to be clear:

<@ OutputCache Duration="100" VaryByParam="None" %>

So in another action on the same controller where content is updated I need to dump this cache, or even all of it - it's a very small app so not a big deal deal to dump all cached items.

flag

74% accept rate

3 Answers

vote up 2 vote down

HttpResponse.RemoveOutputCacheItem() is probably the method you want to use. If you can figure out what name the actions are cached under, you can remove just the specific action (try setting a breakpoint or dumping all of the names of cached items to the screen)

Otherwise, I'd iterate through the entire output cache and just clear every item.

Hope that helps!

link|flag
vote up 0 vote down

it seems that output cache doesn't put anything in HttpContent.Cache because when I loop through it the collection is empty:

For Each elem As DictionaryEntry In HttpContext.Cache
  HttpContext.Cache.Remove(elem.Key)
Next

Here is my action attribute:

<OutputCache(Duration:=600, VaryByParam:="pagename")> _
Function Index(ByVal pagename As String) As ActionResult
link|flag
1  
Aren't HttpContext.Cache and the OutputCache different? I could be wrong, but your example is dealing with the HttpContext.Cache. – Zachary Yates Dec 19 '08 at 18:30
vote up 2 vote down

Be careful about using "None" vs. "".

If you send "" then the HttpHeader for '[Vary][1]' is NOT sent.
If you send "None" then the HttpHeader fr 'Vary' IS sent.

I used Fiddler to verify this behavior.

This seems to have an impact on whether or not the browser goes back to the server to check for latest version (causing a 304). At least in Chrome it does. You want to use Varies="" if you know for sure you aren't going to want to update the file before it has expired.

I'd recommend using "" as I did in this post. For my javascript file I dont want the browser going back and making another Http request until it has expired. 304 is unnecessary.

link|flag
Yeah, what's up with this? Why does it send "Vary: *" if you set VaryByParam to "none"? – bzlm Mar 1 at 18:33
i'm still confused about this! – Simon Mar 2 at 10:50

Your Answer

Get an OpenID
or

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