Early Preview

This is currently very much a preview. Please feel free to try things out, but don't be upset if anything is not yet working. Feedback is welcome over on our GitHub Dicussions page.

enum Microsoft.​Extensions.​Caching.​Hybrid.​HybridCacheEntryFlags

Assembly: Microsoft.Extensions.Caching.Abstractions

Additional flags that apply to a <see cref="T:Microsoft.Extensions.Caching.Hybrid.HybridCache" /> operation.

Values

None
No additional flags.
DisableLocalCacheRead
Disables reading from the local in-process cache.
DisableLocalCacheWrite
Disables writing to the local in-process cache.
DisableLocalCache
Disables both reading from and writing to the local in-process cache.
DisableDistributedCacheRead
Disables reading from the secondary distributed cache.
DisableDistributedCacheWrite
Disables writing to the secondary distributed cache.
DisableDistributedCache
Disables both reading from and writing to the secondary distributed cache.
DisableUnderlyingData
Only fetches the value from cache; does not attempt to access the underlying data store.
DisableCompression
Disables compression for this payload.