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

Exploring Azure Functions- Bindings

Recap In my previous article, we have seen how EF Core can be implemented with HTTP trigger. If you haven't read my previous articles then I highly encourage you to do https://dotnetintellect.com/2020/06/09/exploring-azure-functions-http-trigger-using-ef-core/ https://dotnetintellect.com/2020/06/08/azure-function-intro/ Source Code Introduction Before going into Bindings, we first need to understand about Triggers as Bindings cannot co-exists without Azure Function triggers. …

Continue reading Exploring Azure Functions- Bindings