MemoryCache Class
Represents the type that implements an in-memory cache.
Namespace: System.Runtime.Caching
Assembly: System.Runtime.Caching (in System.Runtime.Caching.dll)
The MemoryCache type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | CacheMemoryLimit | Gets the amount of memory on the computer, in bytes, that can be used by the cache. |
![]() ![]() | Default | Gets a reference to the default MemoryCache instance. |
![]() | DefaultCacheCapabilities | Gets a description of the features that the cache provides. (Overrides ObjectCache.DefaultCacheCapabilities.) |
![]() | 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.) |
![]() | Name | Gets the name of the cache. (Overrides ObjectCache.Name.) |
![]() | PhysicalMemoryLimit | Gets the percentage of physical memory that the cache can use. |
![]() | PollingInterval | Gets the maximum time after which the cache updates its memory statistics. |
| Name | Description | |
|---|---|---|
![]() | 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).) |
![]() | 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.) |
![]() | 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.) |
![]() | 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).) |
![]() | 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).) |
![]() | 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).) |
![]() | Contains | Determines whether a cache entry exists in the cache. (Overrides ObjectCache.Contains(String, String).) |
![]() | CreateCacheEntryChangeMonitor | Creates a CacheEntryChangeMonitor object that can trigger events in response to changes to specified cache entries. (Overrides ObjectCache.CreateCacheEntryChangeMonitor(IEnumerable<String>, String).) |
![]() | Dispose | Releases all resources that are used by the current instance of the MemoryCache class. |
![]() | Equals(Object) | Determines whether the specified object is equal to the current object. (Inherited from Object.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | Get | Returns an entry from the cache. (Overrides ObjectCache.Get(String, String).) |
![]() | GetCacheItem | Returns the specified entry from the cache as a CacheItem instance. (Overrides ObjectCache.GetCacheItem(String, String).) |
![]() | GetCount | Returns the total number of cache entries in the cache. (Overrides ObjectCache.GetCount(String).) |
![]() | GetEnumerator | Creates an enumerator that can be used to iterate through a collection of cache entries. (Overrides ObjectCache.GetEnumerator().) |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | GetValues(IEnumerable<String>, String) | Returns a set of cache entries that correspond to the specified keys. (Overrides ObjectCache.GetValues(IEnumerable<String>, String).) |
![]() | GetValues(String, String[]) | Gets a set of cache entries that correspond to the specified keys. (Inherited from ObjectCache.) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | Remove | Removes a cache entry from the cache. (Overrides ObjectCache.Remove(String, String).) |
![]() | 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).) |
![]() | 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).) |
![]() | 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).) |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
![]() | Trim | Removes a specified percentage of cache entries from the cache object. |
| Name | Description | |
|---|---|---|
![]() | AsParallel | Enables parallelization of a query. (Defined by ParallelEnumerable.) |
![]() | AsQueryable | Converts an IEnumerable to an IQueryable. (Defined by Queryable.) |
![]() | Cast<TResult> | Casts the elements of an IEnumerable to the specified type. (Defined by Enumerable.) |
![]() | OfType<TResult> | Filters the elements of an IEnumerable based on a specified type. (Defined by Enumerable.) |
| Name | Description | |
|---|---|---|
![]() ![]() | IEnumerable.GetEnumerator | Provides support for iteration over a generic collection. |
![]() ![]() | IEnumerable<KeyValuePair<String, Object>>.GetEnumerator | Supports iteration over a strongly typed collection. (Inherited from ObjectCache.) |
The MemoryCache class is a concrete implementation of the abstract ObjectCache class.
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; }
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), 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.







Note