Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more

Class MemoryObjectInstanceCache

Default implementation of IObjectInstanceCache.

Inheritance
System.Object
MemoryObjectInstanceCache
Implements
System.IDisposable
Namespace: EPiServer.Framework.Cache.Internal
Assembly: EPiServer.Framework.dll
Version: 12.0.3
Syntax
public class MemoryObjectInstanceCache : Object, IObjectInstanceCache, IDisposable
Remarks

Uses MemoryCache as the underlying cache mechanism.

Constructors

MemoryObjectInstanceCache(IMemoryCache, IMemoryPressureEvents)

Initializes a new instance of the MemoryObjectInstanceCache class.

Declaration
public MemoryObjectInstanceCache(IMemoryCache memoryCache, IMemoryPressureEvents memoryPressureEvents)
Parameters
Type Name Description
Microsoft.Extensions.Caching.Memory.IMemoryCache memoryCache
IMemoryPressureEvents memoryPressureEvents

Methods

Clear()

Removes all entries from the cache.

Declaration
public void Clear()

Dispose()

Calls Dispose(Boolean) that clears internal state

Declaration
public void Dispose()

Dispose(Boolean)

Clears all internal state such as dependency keys

Declaration
protected void Dispose(bool disposing)
Parameters
Type Name Description
System.Boolean disposing

If called by Dispose()

Get(String)

Gets the specified object.

Declaration
public object Get(string key)
Parameters
Type Name Description
System.String key

The key.

Returns
Type Description
System.Object

The object associated with the key, if it exists. Otherwise returns null.

Insert(String, Object, CacheEvictionPolicy)

Inserts the value into the cache with the specified key.

Declaration
public void Insert(string key, object value, CacheEvictionPolicy evictionPolicy)
Parameters
Type Name Description
System.String key

The key.

System.Object value

The value to cache.

CacheEvictionPolicy evictionPolicy

The cache eviction policy.

Remarks

The evicitionPolicy can be null. In that case the item may stay in the cache for an undetermined time.

Remove(String)

Removes the specified object.

Declaration
public void Remove(string key)
Parameters
Type Name Description
System.String key

The key.

Implements

System.IDisposable

Extension Methods