Redis Caching in .NET

We’ve recently implemented Redis caching in an API which took a little bit of time to figure out. Redis caching is available through the Microsoft.Extensions.Caching.Distributed package and this also supports other provides such as NCache. In our case we only wanted to enable Redis caching for the stg and prd Read more…

Azure Active Directory Token Caching

I’ve been working on a web portal that users Azure Active Directory (AAD) for user authentication and for requesting permissions to the Azure Graph API, the code for which is based on this sample project. This uses a library called Microsoft.Identity.Web that assists with acquiring and storing tokens, currently this Read more…