I'm buffering db inserts to logging in the ASP.NET cache. I'd like to flush those to disk when the item is evicted from cache.

Excluding trivial obvious things like unplugging the server, how hard does ASP.NET try to run the callback on cache eviction?

And part two, would it be sufficient to call run the code that CacheItemRemovedCallback is supposed to run it again in Application_End?

link|improve this question

feedback

1 Answer

I think you can find your response here : When Does Asp.Net Remove Expired Cache Items?.

I can't find more about it.

link|improve this answer
That question is about how closely ASP.NET adheres to it's promised time to remove a cache item and execute the CIRC.From the reference post, it seems to only say that CIRC runs after the specified time when ASP.NET feels it's convenient to do so. It doesn't say if it will decide to never run CIRC. – MatthewMartin Nov 19 '11 at 21:25
feedback

Your Answer

 
or
required, but never shown

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