CacheGranularity Enumeration |
Specifies the caching granularity of a data provider.
Namespace:
Colygon.MatchPoint.Core.DataProviders
Assembly:
Colygon.MatchPoint (in Colygon.MatchPoint.dll) Version: 2019.2.1.0
Syntax public enum CacheGranularity
Members
| Member name | Value | Description |
---|
| NoCache | 0 | No cache is used. |
| User | 1 |
A per-user cache is used. This is recommended when content is aggregated either security-trimmed or based on a
user-specific search condition.
|
| Global | 2 | A global cache is used for all users. |
Remarks
Please note that caching objects are persisted within the front-end server's memory, therefore it is
recommended to use sticky sessions (in multi-front-end scenarios).
See Also