This only clears items in the user cache:
public static void ClearCache()
{
foreach (DictionaryEntry entry in HttpRuntime.Cache)
{
HttpRuntime.Cache.Remove(entry.Key.ToString());
}
}
Is there any way to access the kernel cache as well?
Clarification: I want to print the keys of all items in the kernel cache, and as a bonus I’d like to be able to clear the kernel cache from a C# method as well.
Yep, it’s possible to programmatically enumerate and remove items from IIS’s kernel cache.
Caveats:
Enumeration:
The only documented way I know to enumerate the IIS kernel cache is a command-line app available in IIS7 and above (although you might be able to copy the NETSH helper DLL from V7 onto a V6 system– haven’t tried it).
See MSDN Documentation of the show cachestate command for more details. You could turn this into an “API” by executing the process and parsing the text results.
Big Caveat: I’ve never seen this command-line app actually return anything on my server, even for apps running in Classic mode. Not sure why– but the app does work as I can see from other postings online. (e.g. http://chrison.net/ViewingTheKernelCache.aspx)
If you’re horribly allergic to process creation and feeling ambitious, NETSH commands are implemented by DLL’s with a documented Win32 interface, so you could write code which pretends it’s NETSH.exe and calls into IIS’s NETSH helper DLL directly. You can use the documentation on MSDN as a starting point for this approach. Warning: impersonating NETSH is non-trivially hard since the interface is 2-way: NETSH calls into the DLL and the DLL calls back into NETSH. And you’d still have to parse text output since the NETSH interface is text-based, not object-based like PowerShell or WMI. If it were me, I’d just spawn a NETSH process instead. 😉
It’s possible that the IIS7 PowerShell snapin may support this functionality in the future (meaning easier programmatic access than the hacks above), but AFAIK only NETSH supports this feature today.
Invalidation:
I’ve got good news and bad news for you.
The good news: Once you know the URL of the item you want to yank from IIS’s kernel cache, there’s a Win32 API available to remove it on IIS6 and above. This can be called from C# via P/Invoke (harder) or by putting the call in a managed C++ wrapper DLL. See HSE_REQ_GET_CACHE_INVALIDATION_CALLBACK on MSDN for details.
I took a stab at the code required (attached below). Warning: it’s ugly and untested– it doesn’t crash my IIS but (see above) I can’t figure out how to get cache enumeration working so I can’t actually call it with a valid URL to pull from the cache. If you can get enumeration working, then plugging in a valid URL (and hence testing this code) should be easy.
The bad news:
Here’s some code: