Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

In asp.net is there anyway to view whats in httpcontext.Cache? [duplicate]

Possible Duplicate:
How can I see what's in my HttpContext.Cache

Something funny is happening where things I think are getting cached don't appear to be and expiration doesn't seem to be working as I expect. Is there any admin tool or code sample to view to current cache on the server. I know things like Redis has the ability to do this but not sure with the regular asp.net cache.

  • All things stored in the cache
  • When they were added
  • When they are expiring
  • How much space they are taking up (memory)

on an asp.net-MVC site?

like image 993
leora Avatar asked Mar 29 '12 04:03

leora


1 Answers

Looks like that there is answer on your question or this or you can check this post

like image 134
RredCat Avatar answered Oct 17 '22 12:10

RredCat