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 correct?