We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8ea6fee commit a70f169Copy full SHA for a70f169
articles/active-directory/develop/msal-net-token-cache-serialization.md
@@ -98,8 +98,8 @@ Here are examples of possible distributed caches:
98
services.Configure<MsalDistributedTokenCacheAdapterOptions>(options =>
99
{
100
// Optional: Disable the L1 cache in apps that don't use session affinity
101
- // by setting DisableL1Cache to 'false'.
102
- options.DisableL1Cache = false;
+ // by setting DisableL1Cache to 'true'.
+ options.DisableL1Cache = true;
103
104
// Or limit the memory (by default, this is 500 MB)
105
options.L1CacheOptions.SizeLimit = 1024 * 1024 * 1024; // 1 GB
0 commit comments