What is difference between MemoryCache vs ObjectCache in .net 4.0?
What is difference between .NET framework 4.0 MemoryCache
vs ObjectCache
?
Where to use which object?
Solution 1:
ObjectCache is the abstract class that demonstrates how you should build a Cache that adheres to the rules the person who wrote ObjectCache wants you to obey. You cannot instantiate ObjectCache directly as it is abstract.
MemoryCache is an actual implementation of ObjectCache.
From the documentation:
ObjectCache
Represents an object cache and provides the base methods and properties for accessing the object cache.
MemoryCache
Represents the type that implements an in-memory cache.
Looking at the declaration for MemoryCache:
public class MemoryCache : ObjectCache,
IEnumerable, IDisposable
We can see that MemoryCache inherits from ObjectCache - that is, it's an cache for objects that uses Memory as its storage - this is therefore an implementation of ObjectCache.
You could write your own; for example, DatabaseCache, which could also inherit from ObjectCache but instead it would use a database as the backing storage.
For everyday use, provided it met your needs, you would use and consume a MemoryCache. If you wanted to write your own, you could inherit from ObjectCache and implement the required methods and properties. However, in reality, there is probably little practical benefit to doing this as Microsoft already make several other caching solutions available, as do many other vendors.
Solution 2:
From MSDN
;
The ObjectCache type is the primary type for the in-memory object cache. The built-in MemoryCache class derives from the ObjectCache class. The MemoryCache class is the only concrete object cache implementation in the .NET Framework 4 that derives from the ObjectCache class.
public class MemoryCache : ObjectCache,
IEnumerable, IDisposable
MemoryCache
inherits from ObjectCache
.
You can get a reference to the default MemoryCache
instance like this;
public static ObjectCache cache = MemoryCache.Default;