Click or drag to resize

CacheMode Enumeration

CacheMode

Namespace:  Omada.OE.AppLogic
Assembly:  Omada.OE.AppLogic (in Omada.OE.AppLogic.dll) Version: 15.0.0.0
Syntax
C#
public enum CacheMode
Members
  Member nameValueDescription
Enabled0 We always add to the cache and retrieve from it (when applicable).
PartiallyEnabled1 This mode is used while a changeset is being imported and when the app is in configuration mode. When caching is partially enabled then we: - Read/write from the entity data cache - Read/write immutable cached data - Read/write from the id-based cache on the thread (stored in AppIdentity) And we don't: - Read/write non-immutable cached data
Disabled2 We neither add to nor retrieve from the cache at all.
See Also