Redis, JWT, and threading in ASP.NET Core
Eighteen .NET articles on Redis caching, JWT auth, validation, threading, clean architecture, LINQ, and practical web app patterns.
Jasen's top three picks
- 1 Using Redis in ASP.NET Core
c-sharpcorner.com
A practical Redis walkthrough for ASP.NET Core teams who want faster responses and less database pressure.
- 2 From DNS to Controller: How HTTP, TLS, and the Internet Actually Deliver Your ASP.NET
medium.com
This DNS-to-controller explainer is a good reminder that web requests travel through a lot more than your controller code.
- 3 How to Implement JWT Authentication in ASP.NET Core 8 Step by Step?
c-sharpcorner.com
A straightforward JWT setup guide with the right focus on token flow, authorization, and production concerns.
Editor's note
I curated a broad mix this issue, from hands-on ASP.NET Core guidance to deeper architecture and runtime pieces. The Redis caching article and the async/threading explainers stood out because they connect day-to-day app work with the mechanics behind it. I also liked the validation history and identity-as-infrastructure pieces for the architectural perspective they bring.
Today's articles
Using Redis in ASP.NET Core
c-sharpcorner.com
Boost your ASP.NET Core app's performance with Redis! Learn how to implement caching, reduce database load, and handle high traffic efficiently. Step-by-step guide included.
Read articleFrom DNS to Controller: How HTTP, TLS, and the Internet Actually Deliver Your ASP.NET
medium.com
When you hit:
Read articleHow to Implement JWT Authentication in ASP.NET Core 8 Step by Step?
c-sharpcorner.com
Secure your ASP.NET Core 8 APIs with JWT authentication! This step-by-step guide covers project setup, token generation, authorization, and production best practices for robust security.
Read articleHow Does Threading Work in C#?
c-sharpcorner.com
Unlock C# threading! Learn how to build responsive, scalable .NET apps using threads, Thread Pool, and TPL. Master async/await and synchronization for peak performance.
Read articleBreaking down the (dependency) monolith — Part 2
faun.pub
Imagine you’re a Software Achitect who has successfully refactored their codebase, splitting that bloated dependency monolith into cleaner… Continue reading on FAUN.dev() »
Read articleI Got Tired of Wiring Up Notifications From Scratch — So I Built a Library
medium.com
Every time I start a new project, there’s always that moment.
Read articleRequired Members Feature in C#: Ensuring Safer and More Reliable Object Initialization
c-sharpcorner.com
Ensure safer object initialization in C# with Required Members! Prevent invalid states, improve code safety, and enhance readability. A must-know for .NET devs.
Read articleBuilding Real-World Web Apps with ASP.NET Core Razor Pages
visualstudiomagazine.com
Microsoft MVP Philip Japikse discusses how ASP.NET Core Razor Pages in .NET 10 provides a streamlined, page-centric development model for building maintainable web applications, leveraging modern feat...
Read articleThe Evolution of Validation Techniques in ASP.NET
binaryintellect.net
Validation has always existed in ASP.NET, but its location, mechanics, and architectural significance have changed dramatically over time. What began as a UI convenience feature in Web Forms has evolv...
Read articleWhat Is LINQ and How Does It Improve Data Querying in C#?
c-sharpcorner.com
Discover LINQ in C#: Simplify data querying, boost code readability, and enhance performance in .NET applications. Ideal for scalable enterprise systems.
Read articleRefactoring a Membership Calculator in C# Using SOLID Principles
rupen-anjaria.medium.com
From instanceof / if chains to Clean OOP Design
Read articleReduce Review Fatigue in the AI Coding Era: My .NET Guardrails
ferrywlto.medium.com
In the AI coding era, we type less and let the machine do the heavy-lifting.
Read articleWhy Async Code Still Blocks Threads
medium.com
Every time you read about async and threads, it starts to feel theoretical.
Read articleHow to create clean architecture project in Microsoft Visual Studio
medium.com
Clean Architecture separates your project into layers:
Read articleHow to Improve Performance with Threading in .NET
c-sharpcorner.com
Unlock .NET performance! Master threading & parallel programming for responsive & efficient apps. Learn Task-based approaches & avoid common pitfalls. Build scalable systems!
Read articleIdentity as Infrastructure: Why Delegating Authentication Just Makes Architectural Sense
kjetils.medium.com
How I learned to stop worrying about authentication and love the Identity Provider
Read articleHow to Connect Angular Frontend With ASP.NET Core Web API?
c-sharpcorner.com
Learn how to connect an Angular frontend to an ASP.NET Core Web API for scalable web apps. Includes CORS, HttpClient, environment configs, & security tips.
Read articleHow to Work with Files and IO in C#?
c-sharpcorner.com
Master C# file I/O with System.IO! Learn to read, write, and manage files efficiently in .NET applications. Boost performance and security in cloud environments.
Read article