Results for “Microservices”
8 result(s) in everything
-
Blog
Building Scalable Applications: Microservice Architecture Challenges
While microservices architecture provides significant advantages in scalability, flexibility, and maintainability, it also introduces unique challenges that must be carefully considered when designing
-
Blog
Microservice Architecture Patterns for Architects
A practical tour of the microservice patterns architects actually use — service boundaries, API gateways, sagas, database-per-service, and observability — plus an honest take on when to stay with a monolith.
-
Blog
Modern .NET Backend Roadmap — Part 9: Microservices, Honestly
What microservices buy, what they cost, how to find real boundaries — and why a modular monolith with schema-per-module ownership is the strongest launchpad either way.
-
Blog
Azure for .NET Developers — Part 7: Create and Automate VMs with the Azure SDK
The modern Azure.ResourceManager SDK end to end: resource group, network, and a Linux VM with SSH keys from C#, plus scheduled start/stop to keep the bill sane.
-
Blog
Modern .NET Backend Roadmap — Part 10: Observability with OpenTelemetry
Close the roadmap with OpenTelemetry: traces, metrics, and logs from a running API, custom spans and counters for business operations, cardinality rules, and sampling strategy.
-
Blog
Modern .NET Backend Roadmap — Part 8: CI/CD with GitHub Actions
Automate build, smoke test, image, and deployment with GitHub Actions: SHA-tagged images, OIDC federation to Azure, environments with approvals, and pipeline hygiene.
-
Blog
Modern .NET Backend Roadmap — Part 7: Azure Deployment
Ship the container to Azure: choosing between App Service, Container Apps and AKS, pushing to a registry, secrets and managed identity, and capturing it all as Bicep.
-
Blog
RESTful CRUD Operations with ASP.NET Core Minimal APIs
To build a RESTful CRUD API in ASP.NET Core, model each entity as a resource, map the four HTTP verbs (GET, POST, PUT, DELETE) to read/create/update/delete,…