Are there any good tools to see how much data (or even better the values of that data) is in my HttpContext.Cache?

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

Isis is a control panel for ASP.NET applications that allows easy visibility into the application's assemblies (debug or not), logging, errors, cache, session, performance counters, and more. ( You have to compile it from source. )

CacheManager although quite old - it just works.

Edit: Based on CacheManager i wrote my own implementation, where i use Jayrock.Json to visualize data values of complex types / lists as a readable json.

link|improve this answer
feedback

You can implement a cache viewer page: http://weblogs.asp.net/scottcate/archive/2004/02/05/67830.aspx

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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