.Net 4.0中的新类
MemoryCache似乎就像asp.net缓存一样.我的问题是:
MemoryCache是否等同于在Session Cache中为用户存储对象/值,而不是在aspx页面后面的代码中.
存储在服务器上的MemoryCache中的值是否可以访问网页事件?
解决方法
Is MemoryCache equivalent to storing an object/value in for a user in Session Cache
不,它不相同. ASP.NET Session对象是按用户键/值存储,而MemoryCache是应用程序级键/值存储(值在所有用户之间共享).
Can a value stored in MemoryCache,which exists on the server,be
accessable to a web page event?
在ASP.NET MVC中,通常没有网页事件,但您可以在应用程序中的任何位置访问存储在MemoryCache中的值.
基本上,在ASP.NET应用程序中,新的MemoryCache对象只是旧HttpContext.Cache对象的包装器(它将值存储在旧的Cache对象中).