Is there any type of cache manager?

  • Thread starter Thread starter bulwark_jrm
  • Start date Start date
B

bulwark_jrm

While debugging, I'm having a caching issue. I'm thinking that it
might be nice if I could just see a page of all cache items, with
related details. This seems like something that would be so easy to
develop, and possibly helpful to a sys admin, that it's probably
already in ASP.NET. Unfortunately, my searches are revealing
nothing.

So at the risk of revealing my ignorance here; is there any type of
sys admin cache manager for .NET 2.0 that I could open up and
instantly see what's loaded into cache?

TIA
John
 
You can resort to something like this:

foreach (DictionaryEntry d in this.Cache)
{
Response.Write(d.Key);
Response.Write(" - ");
Response.Write(d.Value);
Response.Write("<hr>");

}


Also, Steve Smith has a CacheManager:

http://aspalliance.com/cachemanager/

Peter
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top