ADAL distributed token cache in ASP.NET Core

Azure AD Authentication Library relies on its token cache for efficient token management. When you request an access token with AcquireTokenSilentAsync and there is a valid token in the cache you get it right away. Otherwise if there is a refresh token it's used to obtain a new access token... »