Skip to content
Tag

aspnet-core

3 articles

Rate Limiting in ASP.NET Core (.NET 10) - Complete Guide
.NET Core thg 9 13, 2026 36 min read

Rate Limiting in ASP.NET Core (.NET 10) - Complete Guide

A free-tier user runs a for loop against my pricing endpoint. The endpoint hits PostgreSQL on every call, fans out to Stripe for plan metadata, and warms a HybridCache entry that other tenants depend on. Within thirty seconds, the databa...

By Huy Vũ
API Versioning in ASP.NET Core - The .NET 10 Guide
.NET Core thg 9 13, 2026 29 min read

API Versioning in ASP.NET Core - The .NET 10 Guide

API versioning in ASP.NET Core lets multiple versions of the same endpoint run side by side, so you can ship breaking changes without breaking the clients already calling your API. On .NET 10, the modern way to do it is the Asp.Versionin...

By Huy Vũ
HybridCache in ASP.NET Core .NET 10 - Complete Guide
.NET Core thg 9 10, 2026 47 min read EN VI

HybridCache in ASP.NET Core .NET 10 - Complete Guide

I wrote custom IDistributedCache extension methods - GetOrSetAsync, TryGetValue, SetAsync with generics - for every project that needed Redis caching. Dozens of lines of boilerplate that I copied from project to project. HybridCache made...

By Huy Vũ