Enum ReadMode
Enumeration that defines the read mode if item is not found in cache.
Assembly: Alachisoft.NCache.Runtime.dll
Syntax
public enum ReadMode : byte
Fields
Name | Description |
---|---|
None | It checks for existence of an item in cache and if not found, returns null. |
ReadThru | It checks for existence of an item in cache and if not found, fetches the data from the data source. |
ReadThruForced | It fetches the item from data source regardless of its existence in the cache or not. |