Skip to content
Author profile

Huy Vũ

Articles, ideas, and practical insights from Huy Vũ.

26 published articles

How To Decide if You Should Use Table Partitioning
Sql Server thg 9 14, 2026 9 phút đọc EN VI

How To Decide if You Should Use Table Partitioning

Great volumes have been written about table partitioning. It’s a complex feature and you can read for days to just understand how you might apply it. But will it improve performance for you? Table partitioning produces great benefits for...

By Huy Vũ
Rate Limiting in ASP.NET Core (.NET 10) - Complete Guide
.NET Core thg 9 13, 2026 36 phút đọc

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 phút đọc

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ũ