Cache-aside pattern using ASP.NET Core and Azure Redis Cache

In the software development cycle, often the focus is on the performance of the application. There are many ways to improve the performance and one of the most commonly used pattern to improve the performance in modern cloud application is Cache-aside pattern. In this post, I will describe briefly about Cache-aside pattern and it's implementation …

Continue reading Cache-aside pattern using ASP.NET Core and Azure Redis Cache

Query and Mutation in GraphQL- Part two

Recap In the previous article of the GraphQL series, we discussed the introduction of GraphQL and Pros & Cons of using GraphQL. If you haven’t read my previous articles then I highly encourage you to do so https://dotnetintellect.com/2020/07/29/introduction-to-graphql/ I believe you have prior understanding of EF Core and we'll be concentrating only on GraphQL concepts. …

Continue reading Query and Mutation in GraphQL- Part two

Azure Cosmos DB- SQL API using EF Core- Part two

Recap In my previous article, we have seen the introduction of the Cosmos DB. If you haven’t read my previous article then I highly encourage you to do so https://dotnetintellect.com/2020/06/29/azure-cosmos-db-intro/ Azure Cosmos DB CLI Let's begin with creating Azure resources using CLI //login az login //Resource group creation $resourcegroup="CosmosDBverify" az group create -l southindia -n …

Continue reading Azure Cosmos DB- SQL API using EF Core- Part two