Blocking token cache operations prevent async patterns
7The TokenCache API in MSAL.NET uses void-returning event handlers for load/persist operations, forcing synchronous calls to distributed caches. This blocks threads and can cause application crashes under high load in ASP.NET Core applications, as async cache APIs cannot be leveraged.
configMSAL.NETASP.NET CoreToken Cache