ConfidentialClientApplicationOptions.EnableCacheSynchronization Property

Definition

When set to true, MSAL will lock cache access at the ConfidentialClientApplication level, i.e. the block of code between BeforeAccessAsync and AfterAccessAsync callbacks will be synchronized. Apps can set this flag to false to enable an optimistic cache locking strategy, which may result in better performance at the cost of cache consistency. Setting this flag to false is only recommended for apps which create a new ConfidentialClientApplication per request.

public bool EnableCacheSynchronization { get; set; }
member this.EnableCacheSynchronization : bool with get, set
Public Property EnableCacheSynchronization As Boolean

Property Value

Remarks

This flag is true by default. The default behavior is recommended.

Applies to