This topic has not yet been rated - Rate this topic

MemoryCache Class

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

Represents the type that implements an in-memory cache.

System.Object
  System.Runtime.Caching.ObjectCache
    System.Runtime.Caching.MemoryCache

Namespace:  System.Runtime.Caching
Assembly:  System.Runtime.Caching (in System.Runtime.Caching.dll)

public class MemoryCache : ObjectCache, 
	IEnumerable, IDisposable

The MemoryCache type exposes the following members.

  Name Description
Public method MemoryCache Initializes a new instance of the MemoryCache class.
Top
  Name Description
Public property CacheMemoryLimit Gets the amount of memory on the computer, in bytes, that can be used by the cache.
Public property Static member Default Gets a reference to the default MemoryCache instance.
Public property DefaultCacheCapabilities Gets a description of the features that the cache provides. (Overrides ObjectCache.DefaultCacheCapabilities.)
Public property Item Gets or sets a value in the cache by using the default indexer property for an instance of the MemoryCache class. (Overrides ObjectCache.Item[String].)
Public property Name Gets the name of the cache. (Overrides ObjectCache.Name.)
Public property PhysicalMemoryLimit Gets the percentage of physical memory that the cache can use.
Public property PollingInterval Gets the maximum time after which the cache updates its memory statistics.
Top
  Name Description
Public method Add(CacheItem, CacheItemPolicy) Inserts a cache entry into the cache as a CacheItem instance, and adds details about how the entry should be evicted. (Overrides ObjectCache.Add(CacheItem, CacheItemPolicy).)
Public method Add(String, Object, DateTimeOffset, String) When overridden in a derived class, inserts a cache entry into the cache without overwriting any existing cache entry. (Inherited from ObjectCache.)
Public method Add(String, Object, CacheItemPolicy, String) When overridden in a derived class, inserts a cache entry into the cache, specifying information about how the entry will be evicted. (Inherited from ObjectCache.)
Public method AddOrGetExisting(CacheItem, CacheItemPolicy) Adds a cache entry into the cache using the specified CacheItem instance and details about how to evict the entry. (Overrides ObjectCache.AddOrGetExisting(CacheItem, CacheItemPolicy).)
Public method AddOrGetExisting(String, Object, DateTimeOffset, String) Adds a cache entry into the cache using the specified key and a value and an absolute expiration value. (Overrides ObjectCache.AddOrGetExisting(String, Object, DateTimeOffset, String).)
Public method AddOrGetExisting(String, Object, CacheItemPolicy, String) Inserts a cache entry into the cache using the specified key and value and the specified details for how it is to be evicted. (Overrides ObjectCache.AddOrGetExisting(String, Object, CacheItemPolicy, String).)
Public method Contains Determines whether a cache entry exists in the cache. (Overrides ObjectCache.Contains(String, String).)
Public method CreateCacheEntryChangeMonitor Creates a CacheEntryChangeMonitor object that can trigger events in response to changes to specified cache entries. (Overrides ObjectCache.CreateCacheEntryChangeMonitor(IEnumerable<String>, String).)
Public method Dispose Releases all resources that are used by the current instance of the MemoryCache class.
Public method Equals(Object) Determines whether the specified Object is equal to the current Object. (Inherited from Object.)
Protected method Finalize Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.)
Public method Get Returns an entry from the cache. (Overrides ObjectCache.Get(String, String).)
Public method GetCacheItem Returns the specified entry from the cache as a CacheItem instance. (Overrides ObjectCache.GetCacheItem(String, String).)
Public method GetCount Returns the total number of cache entries in the cache. (Overrides ObjectCache.GetCount(String).)
Protected method GetEnumerator Creates an enumerator that can be used to iterate through a collection of cache entries. (Overrides ObjectCache.GetEnumerator().)
Public method GetHashCode Serves as a hash function for a particular type. (Inherited from Object.)
Public method GetType Gets the Type of the current instance. (Inherited from Object.)
Public method GetValues(IEnumerable<String>, String) Returns a set of cache entries that correspond to the specified keys. (Overrides ObjectCache.GetValues(IEnumerable<String>, String).)
Public method GetValues(String, String[]) Gets a set of cache entries that correspond to the specified keys. (Inherited from ObjectCache.)
Protected method MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Public method Remove Removes a cache entry from the cache. (Overrides ObjectCache.Remove(String, String).)
Public method Set(CacheItem, CacheItemPolicy) Inserts a cache entry into the cache by using a CacheItem instance to supply the key and value for the cache entry. (Overrides ObjectCache.Set(CacheItem, CacheItemPolicy).)
Public method Set(String, Object, DateTimeOffset, String) Inserts a cache entry into the cache by using a key and a value and specifies time-based expiration details. (Overrides ObjectCache.Set(String, Object, DateTimeOffset, String).)
Public method Set(String, Object, CacheItemPolicy, String) Inserts a cache entry into the cache by using a key and a value and eviction. (Overrides ObjectCache.Set(String, Object, CacheItemPolicy, String).)
Public method ToString Returns a string that represents the current object. (Inherited from Object.)
Public method Trim Removes a specified percentage of cache entries from the cache object.
Top
  Name Description
Public Extension Method AsParallel Enables parallelization of a query. (Defined by ParallelEnumerable.)
Public Extension Method AsQueryable Converts an IEnumerable to an IQueryable. (Defined by Queryable.)
Public Extension Method Cast<TResult> Casts the elements of an IEnumerable to the specified type. (Defined by Enumerable.)
Public Extension Method OfType<TResult> Filters the elements of an IEnumerable based on a specified type. (Defined by Enumerable.)
Top
  Name Description
Explicit interface implemetation Private method IEnumerable.GetEnumerator Provides support for iteration over a generic collection.
Explicit interface implemetation Private method IEnumerable<KeyValuePair<String, Object>>.GetEnumerator Supports iteration over a strongly typed collection. (Inherited from ObjectCache.)
Top

The MemoryCache class is a concrete implementation of the abstract ObjectCache class.

Note Note

The MemoryCache class is similar to the ASP.NET Cache class. The MemoryCache class has many properties and methods for accessing the cache that will be familiar to you if you have used the ASP.NET Cache class. The main differences between the Cache and MemoryCache classes are that the MemoryCache class has been changed to make it usable by .NET Framework applications that are not ASP.NET applications. For example, the MemoryCache class has no dependencies on the System.Web assembly. Another difference is that you can create multiple instances of the MemoryCache class for use in the same application and in the same AppDomain instance.

The MemoryCache class does not allow null as a value in the cache. Any attempt to add or change a cache entry with a value of null will fail.

The MemoryCache type does not implement cache regions. Therefore, when you call MemoryCache methods that implement base methods that contain a parameter for regions, do not pass a value for the parameter. The methods that use the region parameter all supply a default null value. For example, the MemoryCache.AddOrGetExisting method overload has a regionName parameter whose default value is null.

The following example declares a reference to the default memory cache instance. The cache entry uses a CacheItemPolicy object to provide eviction and expiration details for the cache entry. It also uses a ChangeMonitor object to monitor the state of the source data (which is a file) on the file system.

private void btnGet_Click(object sender, EventArgs e)
{
    ObjectCache cache = MemoryCache.Default;
    string fileContents = cache["filecontents"] as string;

    if (fileContents == null)
    {
        CacheItemPolicy policy = new CacheItemPolicy();
        
        List<string> filePaths = new List<string>();
        filePaths.Add("c:\\cache\\example.txt");

        policy.ChangeMonitors.Add(new 
        HostFileChangeMonitor(filePaths));

        // Fetch the file contents.
        fileContents = 
            File.ReadAllText("c:\\cache\\example.txt");
        
        cache.Set("filecontents", fileContents, policy);
    }

    Label1.Text = fileContents;
}

.NET Framework

Supported in: 4.5, 4

Windows 8 Release Preview, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 SP2, Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

This type is thread safe.

Did you find this helpful?
(1500 characters remaining)