ConfidentialClientApplicationBuilder.WithCacheSynchronization(Boolean) Method

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 Microsoft.Identity.Client.ConfidentialClientApplicationBuilder WithCacheSynchronization (bool enableCacheSynchronization);
member this.WithCacheSynchronization : bool -> Microsoft.Identity.Client.ConfidentialClientApplicationBuilder
Public Function WithCacheSynchronization (enableCacheSynchronization As Boolean) As ConfidentialClientApplicationBuilder

Parameters

enableCacheSynchronization
Boolean

Returns

Remarks

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

Applies to