performance
.NET Performance and Optimization Articles, Tutorials & News
.NET Performance and Optimization articles, tutorials, and news from the DotNetNews archive.
1396 articles Updated Page 18 of 56
Browse additional .NET Performance and Optimization articles from the DotNetNews archive.
.NET Performance and Optimization articles
Page 18 of 56
Newest first
-
From .NET to AI: How a C# Developer Is Building Intelligent Enterprise Applications
medium.com Issue #350
For almost a decade, my world revolved around .NET, C#, APIs, databases, and distributed systems. Clean architecture, SOLID principles…
-
Avoid These 6 HttpClient Mistakes That Quietly Kill Your Throughput
medium.com Issue #350
(And why your API slows down the moment traffic gets real)
-
The Practical Guide to ConfigureAwait(false) in 2025 — Stop Using It Blindly
medium.com Issue #349
Most .NET developers still treat ConfigureAwait(false) like a superstition.
-
Scott Guthrie Interstitial - Evolution
youtube.com Issue #349
Boosting Your ASP.NET Core App with Multi-Layer Caching: A Comprehensive Guide
-
LINQ Performance Optimization: 5 Patterns Every C# Developer Should Know
towardsdev.com Issue #349
Production-tested patterns for faster queries, lower memory usage, and better .NET application performance Continue reading on Towards Dev »
-
How To Add Fault Handling In ASP.NET Core With Polly
medium.com Issue #349
If your ASP.NET Core app calls anything over the network — Stripe, a user service, a database over HTTP, whatever — you need fault…
-
EF Core Was Fast… Until Lazy Loading Destroyed My App
medium.com Issue #348
When it comes to working with .NET EF Core, the first thing that comes to mind is — High Performance ORM. Yes, EF Core is really fast… Continue reading on Dot Net, API & SQL Learning »
-
Concurrency and Producer–Consumer Pattern with C# BlockingCollection
medium.com Issue #348
In today’s world, it has become critical for an application to handle multiple tasks simultaneously. Many areas rely on this capability…
-
Async/Await Is Killing Your .NET Performance: The Value-Task Masterclass
medium.com Issue #348
Async/Await is slow. Master ValueTask and advanced C# concurrency patterns to write allocation-free, lightning-fast .NET APIs.
-
Diagnose Memory Leaks in .NET in 15 Minutes — A Practical Walkthrough
medium.com Issue #348
(Stop rebooting pods and finally fix the real issue)
-
Why Your LINQ Is Generating SQL You Didn’t Expect — And How to See the Truth
medium.com Issue #348
(And the ONE profiling trick every senior .NET dev should use)
-
Fixing Broken LINQ Queries in EF Core: A Developer’s Troubleshooting Guide
medium.com Issue #348
Improve EF Core Performance by Understanding How LINQ Really Translates to SQL.
-
In-Memory Caching in .NET (IMemoryCache)
medium.com Issue #347
Package used: Microsoft.Extensions.Caching.Memory
-
5 LINQ Mistakes That Pass Code Review But Crash Production
medium.com Issue #347
We all know the basics while writing API calls that say “Don’t use .ToList() too early” and “Don’t loop over database calls.” Continue reading on Readers Club »
-
EF Core Performance Optimization Challenge | 233x FASTER in .Net 10
medium.com Issue #347
Let’s play a little EF Core game.
-
⚡ How a Missing SQL Index Crashed a High-Traffic .NET E-Commerce Platform
medium.com Issue #347
Discover how a single missing SQL index crashed a high-traffic .NET e-commerce platform and the lessons for real-world architecture.
-
Understanding Parallel.ForEachAsync in .NET
medium.com Issue #347
Parallel.ForEachAsync was introduced to us with .NET 6. It is one of the most important innovations brought by .NET 6, because it enables…
-
One Trick To Improve EF Core Performance Using Query Splitting in .Net 10
medium.com Issue #347
One Trick To Improve EF Core Performance Using Query Splitting in .NET10
-
Redis in C# — A Technical Overview
c-sharpcorner.com Issue #346
Explore Redis with C# using StackExchange.Redis for caching, distributed locks, and pub/sub. Enhance .NET application performance and scalability with this in-memory data store.
-
The Cost of Abstraction Offered by .NET
medium.com Issue #346
The comfort and security offered by .NET is like magic. It manages memory for us, ensures safety between types, and spares us the hassle…
-
10 Code Review Rules That Stop Production Bugs Before They Happen
medium.com Issue #346
(What senior .NET engineers actually look for — beyond naming and formatting)
-
DotEnv for .NET: The Configuration Superpower You Didn’t Know You Needed!
medium.com Issue #346
Why DotEnv is PERFECT for both regular apps and the new .NET 10 file-based apps
-
C# Array Tutorial: How to Declare, Initialize, Access & Use Arrays
c-sharpcorner.com Issue #346
Learn how to declare, initialize, access, and manipulate arrays in C#. This guide covers sorting, copying, and finding the length of arrays with practical examples.
-
Mastering Collections in .NET Core
c-sharpcorner.com Issue #345
Master .NET Core collections! Explore Lists, Dictionaries, Queues, Stacks, HashSets, and Concurrent Collections with real-time examples and performance tips.
-
Profiler Agent - Delegate the analysis, not the performance
devblogs.microsoft.com Issue #345
In Visual Studio 2026 we introduced Copilot Profiler Agent, a new AI-powered assistant that helps