CacheMode
Namespace:
Omada.OE.AppLogic
Assembly:
Omada.OE.AppLogic (in Omada.OE.AppLogic.dll) Version: 15.0.0.0
Syntax
Members
| Member name | Value | Description |
---|
| Enabled | 0 |
We always add to the cache and retrieve from it (when applicable).
|
| PartiallyEnabled | 1 |
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
|
| Disabled | 2 |
We neither add to nor retrieve from the cache at all.
|
See Also