Click or drag to resize

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
C#
public enum CacheGranularity
Members
  Member nameValueDescription
NoCache0No cache is used.
User1 A per-user cache is used. This is recommended when content is aggregated either security-trimmed or based on a user-specific search condition.
Global2A 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