Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 System.Web.Caching 哪些实体是单独缓存的。例如,如果我有 1000 个产品,它们每个都会在缓存中拥有自己的条目。
我知道这是一个很好的做法,尤其是在我的情况下,缓存最终将保存在单独的缓存服务器上,并且每次访问缓存时,它都会被序列化。
我的问题是:如何跟踪我目前在缓存中拥有哪些产品?如果我:(A)想要获取当前缓存中的所有产品,(B)想要清除缓存中的所有产品,(C)想要刷新缓存中的所有产品,则需要这样做。