I understand the .NET 4 Framework has caching support built into it. Does anyone have any experience with this, or could provide good resources to learn more about this?
I am referring to the caching of objects (entities primarily) in memory, and probably the use of System.Runtime.Caching.
I assume you are getting at this,
System.Runtime.Caching, similar to theSystem.Web.Cachingand in a more general namespace.See http://deanhume.com/Home/BlogPost/object-caching—-net-4/37
and on the stack,
is-there-some-sort-of-cachedependency-in-system-runtime-caching and,
performance-of-system-runtime-caching.
Could be useful.