Class MemoryObjectInstanceCache
Default implementation of IObjectInstanceCache.
Inheritance
Namespace: EPiServer.Framework.Cache.Internal
Assembly: EPiServer.Framework.dll
Version: 12.0.3Syntax
public class MemoryObjectInstanceCache : Object, IObjectInstanceCache, IDisposable
Remarks
Uses MemoryCache as the underlying cache mechanism.
Constructors
MemoryObjectInstanceCache(IMemoryCache, IMemoryPressureEvents)
Initializes a new instance of the Memory
Declaration
public MemoryObjectInstanceCache(IMemoryCache memoryCache, IMemoryPressureEvents memoryPressureEvents)
Parameters
Type | Name | Description |
---|---|---|
Microsoft. |
memoryCache | |
IMemory |
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. |
disposing | If called by Dispose() |
Get(String)
Gets the specified object.
Declaration
public object Get(string key)
Parameters
Type | Name | Description |
---|---|---|
System. |
key | The key. |
Returns
Type | Description |
---|---|
System. |
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. |
key | The key. |
System. |
value | The value to cache. |
Cache |
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. |
key | The key. |