Skip to content

Commit a70f169

Browse files
Updated DisableL1Cache
Updated DisableL1Cache to True --------------------------- cc: @jmprieur GitHub Issue: https://github.com/MicrosoftDocs/azure-docs/issues/97201
1 parent 8ea6fee commit a70f169

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/active-directory/develop/msal-net-token-cache-serialization.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,8 +98,8 @@ Here are examples of possible distributed caches:
9898
services.Configure<MsalDistributedTokenCacheAdapterOptions>(options =>
9999
{
100100
// Optional: Disable the L1 cache in apps that don't use session affinity
101-
// by setting DisableL1Cache to 'false'.
102-
options.DisableL1Cache = false;
101+
// by setting DisableL1Cache to 'true'.
102+
options.DisableL1Cache = true;
103103

104104
// Or limit the memory (by default, this is 500 MB)
105105
options.L1CacheOptions.SizeLimit = 1024 * 1024 * 1024; // 1 GB

0 commit comments

Comments
 (0)