Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsFree MagazinesWhite PapersSubmit Content
Discussion GroupsASP.NETWindows FormsLanguages.NET FrameworkVisual Studio.NET
Articles.NET FrameworkASP.NETToolsWindows Forms
.NET DirectoryOpen Source ProjectsUser GroupsWeb Resources
Related Topics
Visual Basic 6SQL ServerMS AccessOther DB ProductsMS Server ProductsMore Topics ...

.NET Forum / ASP.NET / General / July 2007

Tip: Looking for answers? Try searching our database.

Is there any type of cache manager?

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
bulwark_jrm@hotmail.com - 09 Jul 2007 19:28 GMT
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
Peter Bromberg [C# MVP] - 09 Jul 2007 19:50 GMT
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

Signature

Site:  http://www.eggheadcafe.com
UnBlog:  http://petesbloggerama.blogspot.com
BlogMetaFinder(BETA):    http://www.blogmetafinder.com

> 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
[quoted text clipped - 9 lines]
> TIA
> John
bulwark_jrm@hotmail.com - 09 Jul 2007 21:42 GMT
On Jul 9, 2:50 pm, Peter Bromberg [C# MVP]
<pbromb...@yahoo.yabbadabbadoo.com> wrote:
...
> Also, Steve Smith has  a CacheManager:
>
[quoted text clipped - 6 lines]
> UnBlog:  http://petesbloggerama.blogspot.com
> BlogMetaFinder(BETA):    http://www.blogmetafinder.com

Thanks Peter,

That's perfect.

John

Rate this thread:







Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.