asp.net-mvc – .Net 4内存缓存类和用户会话

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – .Net 4内存缓存类和用户会话前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
.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对象中).

原文链接:https://www.f2er.com/aspnet/251766.html

猜你在找的asp.Net相关文章