asp.net-cache

ASP.NET - Is everything I store in Cache part of the w3wp process?

It is my understand that the ASP.NET Cache is part of the w3wp process, meaning writing to and reading from it does not cross process boundaries does not require marshalling does not require or perform serialization of objects placed in it (All in comparison to using ASP.NET Session State Server which does all these things) Is this...

Is ASP.Net State Server an elegant solution?

We have an ASP.Net MVC project that will start with a single web server but will likely soon scale into a small web farm. As ASP.Net Authentication stores a UserID, and data caching may also be useful, we will likely need to make the jump to state server fairly soon. I'd like to hear from others how State Server has been to work with...

what techniques should be used to handle objects in asp.net Cache to prevent problems from multiple asp.net worker threads access?

since asp.net contains multiple threads that are executing at the same time. so if 2 threads access an object (simple or complex) that i got from the the asp.net httpcontext Cache. can't this lead to state problems on that object if these 2 theads tried to modify/read it at the same time? so what kind of precautions should i implement? f...