Skip to content
Articles

dotnet 10

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ũ
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ũ