Enum CacheUpdateMode
Defines the possible update modes of the cache manager.
Update mode works on Get operations. If the cache manager finds the cache item in one of the cache handles, and other cache handles do not have that item, it might add the item to the other cache handles depending on the mode.
Namespace:CacheManager.Core
Assembly:CacheManager.Core.dll
Syntax
public enum CacheUpdateMode
Fields
Name | Description |
---|---|
None | Instructs the cache manager not to synchronize cache items with other cache handles (on Get(String) for example). |
Up | Instructs the cache manager to synchronize cache items with other cache handles above in the list of cache handles.
The order of cache handles is defined by the configuration.
|