Satyabrata Dash
@iamsbdash
Followers
636
Following
19K
Media
2K
Statuses
15K
Hello @MyntraSupport you have messaged up the delivery of my order. It was supposed to be delivered on 12th and now doesnβt have a delivery date.
0
0
0
Thinking about building AI agents but not sure where to start? Our newest AI Agents for Beginners course is here, and this one is focused on AI Agentic Design Principles, which helps you learn how to implement simple, human-first approach to creating agents that: β¨ Boost
10
55
264
The most beautiful things in the world happen quietly.
0
0
0
API Gateway vs Load Balancer vs Reverse Proxy (explained in under 2 mins): β’ Load Balancer β³ Distributes incoming traffic across multiple servers to ensure reliability and performance. β’ Reverse Proxy β³ Sits in front of servers, forwarding requests while hiding server
10
121
750
To summarise: Most .NET performance issues in the cloud are not coding problems. They come from missed configurations, default settings, and lack of observability. Fix these five and your API will feel instantly faster. Happy shipping π
0
0
0
5. Database connection misconfigurations Common issues: β Missing connection pooling settings β Not using retry policies β No caching β Inefficient EF Core queries Cloud databases need resilient design. One wrong setting slows the entire API.
1
0
0
4. Auto-scaling is off Cloud traffic is unpredictable. If your API gets a sudden spike and scaling is disabled, your app will choke. Scale by: β CPU β Memory β Requests β Custom rules
1
0
0
3. Application Insights is not configured properly No logs No telemetry No dependency tracking No slow-query detection You cannot fix what you cannot see. Turn it on and tune sampling.
1
0
0
2. No health checks enabled Add this in Program.cs: https://t.co/cUBPLXMv9n.AddHealthChecks(); Azure uses health checks to know if your instance is alive. Without it, traffic may be routed to a dead or stuck instance.
1
0
0
1. Running on the wrong App Service Plan Many teams deploy on the default tier and forget to size it. If your API is CPU-heavy or handles many requests, you need at least a Standard or Premium plan. A weak plan = slow responses.
1
0
0
5 Azure Misconfigurations That Kill .NET API Performance If your .NET API is running on Azure and still feels slow, the problem is usually not your code. Most of the time, it is a small Azure setting that nobody paid attention to. Here are 5 Azure misconfigurations that
1
0
0