nandkishor.hashnode.devCaching with NCache in ASP.NET CoreIn this article, we will talk about Distributed Caching, NCache, and its features such as Object Caching, Session Caching, and Response Caching along with practical implementation in ASP.NET Core. What is distributed caching A distributed cache is a ...Jun 1, 2022·21 min read
nandkishor.hashnode.devPub/Sub Design Pattern in .NET Distributed CacheThe publish-Subscribe pattern also known as Pub/Sub is an indispensable tool for building enterprise-grade .NET applications. Just to refresh your memory, Pub/Sub is a messaging paradigm where the senders of messages (publisher) do not have any knowl...Mar 14, 2022·11 min read
nandkishor.hashnode.devReal-Time Data/Stream Processing with NCacheKey Takeaways Real-time data/stream processing is attractive for data-driven applications with low latency requirements such as network monitoring and real-time price analysis applications. An in-memory distributed is an ideal platform for the devel...Mar 9, 2022·7 min read
nandkishor.hashnode.devCreate Protected Routes In NextJS and NextAuthProtecting Routes from unauthenticated users is a crucial part of any app. In this article, I'll show you exactly how to create protected routes in your NextJS application using NextAuth. I'll use a JWT token as an example, with the accessToken bein...Dec 6, 2021·3 min read
nandkishor.hashnode.devHow to implement NextAuth credentials provider with external API and login pageWhen it comes to adding authentication to your next.js project, NextAuth is a wonderful option. It's easy to see why, given its extensive provider support, which includes Apple, GitHub, Azure Active Directory, Azure Active Directory B2C, Google, and ...Dec 6, 2021·8 min read