Enum CachePeekMode
Enumeration of all supported cache peek modes.
Namespace: Apache.Ignite.Core.Cache
Assembly: Apache.Ignite.Core.dll
Syntax
public enum CachePeekMode : intFields
| Name | Description | 
|---|---|
| All | Peeks into all available cache storages. | 
| Backup | Peek value from backup copies of partitioned cache only (skip near cache). In case of LOCAL cache, behaves as All mode. | 
| Near | Peek into near cache only (don't peek into partitioned cache). In case of LOCAL cache, behaves as All mode. | 
| Offheap | Peeks value from the off-heap storage only, without loading off-heap value into cache. | 
| Onheap | Peeks value from the on-heap storage only. | 
| Platform | Peeks value from local native .NET cache (see PlatformCacheConfiguration). | 
| Primary | Peek value from primary copy of partitioned cache only (skip near cache). In case of LOCAL cache, behaves as All mode. |