Cache Manager for ASP.NET

I would like to integrate Cache Manager into an ASP.NET application. Basically, I would like the page to display what’s in the cache and allows me to delete certain items or clear the entire cache. Ideally, I would like to get as much information as possible, for example, how much time is in the cache, the number of hits, the size of the object, it is possible to see the object itself, etc. Of course, I understand that some of this information may not be available from the default caching API.

I think it would be pretty easy to implement, but I do not want to reinvent the wheel. I did a search and came across it: http://aspalliance.com/cachemanager/Screenshots.aspx

Just wondering if there are other options that I could compare.

Greetings

+3
source share
2 answers

I use this code to view cache data.

http://www.codeproject.com/KB/session/exploresessionandcache.aspx

This is not a cache manager, but its a good time to start.

+1
source

You can use one of the following open source solutions if you find it useful.

http://csharp-source.net/open-source/cache-solutions

hope this helps

+1
source

Source: https://habr.com/ru/post/1759056/


All Articles