The new class MemoryCache in .Net 4.0 appears to act just like asp.net caching. My questions are:

Is MemoryCache equivalent to storing an object/value in for a user in Session Cache, but not in the code behind of an aspx page.

Can a value stored in MemoryCache, which exists on the server, be accessable to a web page event?

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

Is MemoryCache equivalent to storing an object/value in for a user in Session Cache

No, it is not equivalent. The ASP.NET Session object is per user key/value storage, whereas MemoryCache is an application level key/value storage (values are shared among all users).

Can a value stored in MemoryCache, which exists on the server, be accessable to a web page event?

In ASP.NET MVC there are usually no web page events but you can access values stored in MemoryCache everywhere within the application.

Basically, in an ASP.NET application, the new MemoryCache object is just a wrapper for the old HttpContext.Cache object (it stores values in the old Cache object).

link|improve this answer
So how would one access a value set in MemoryCache (in the controller or model level) down at the view level? – Jason Dec 31 '11 at 15:23
@Jason, in a properly designed ASP.NET MVC application the view shouldn't access anything else than the view model that it is passed to it by the controller. So your controller action will query the cache, build a view model and pass this view model to the view. Then the view will simply display the corresponding property. – Darin Dimitrov Dec 31 '11 at 15:26
Thank you for the info Darin. I realize what I was trying to accomplish with MVC and your explanation helped me figure out what I was doing wrong. – Jason Dec 31 '11 at 18:54
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.