Tag
aspnetcore
.NETWhen Cached State Isn't Enough: Adding PostgreSQL with .NET Aspire
Add PostgreSQL to a .NET Aspire app for durable incident state, with explicit migration ownership across multiple API replicas.
.NETWhen IMemoryCache Stops Scaling: Moving to Redis with .NET Aspire
See why IMemoryCache breaks down across multiple app instances, then move shared cache state to Redis and wire it with .NET Aspire.
asp.net coreASP.NET Core Health Checks
Add health checks to an ASP.NET Core service, expose them on an endpoint, and choose which dependencies belong in a readiness signal.
asp.net coreDistributed Caching in ASP.NET Core with Redis
Move a cache out of process memory and into Redis with IDistributedCache, so an ASP.NET Core app keeps its cache when you scale horizontally.
Updated · originally
asp.net coreUnderstanding the WebSocket Protocol with ASP.NET Core
Understand the WebSocket protocol through an ASP.NET Core example: inspect the HTTP upgrade, frames, EndOfMessage, and a raw echo endpoint.
Updated · originally
asp.net coreUnderstanding .NET Generic Host Model
How the .NET Generic Host separates initialisation from execution, and what it configures for you in both a web app and a worker service.
asp.net coreSecuring Hangfire Dashboard in ASP.NET Core with a Custom Auth Policy
Secure the Hangfire Dashboard in ASP.NET Core with endpoint routing, a custom authorization policy, Azure AD authentication, and role checks.
asp.net coreSimple In-Memory Caching in .NET 10 with IMemoryCache
Cache expensive calls in a .NET 10 app with IMemoryCache, then fix the thundering herd the naive version causes by locking around the cache miss.
Updated · originally
asp.net coreDeploying an ASP.NET Core App on Google Kubernetes Engine
Explore the original ASP.NET Core deployment walkthrough using Docker, Google Container Registry, and Google Kubernetes Engine.
asp.net coreHow to Pre-Configure Services Before Registering with ASP.NET Core's Built-in Service Container
Pre-configure ASP.NET Core services that need dependencies before registration by using an explicit factory and service-provider setup.