performance
.NET Performance and Optimization Articles, Tutorials & News
.NET Performance and Optimization articles, tutorials, and news from the DotNetNews archive.
1586 articles Updated Page 25 of 64
Browse additional .NET Performance and Optimization articles from the DotNetNews archive.
.NET Performance and Optimization articles
Page 25 of 64
Newest first
-
This One Line of ASP.NET Core Code Allocates More Than You Think
Medium Issue #356
(And why your API burns memory before business logic even starts) Continue reading on Towards Dev »
-
EF Core Bulk Data Retrieval: 5 Methods You Should Know
Dev Tips Issue #355
Learn how to efficiently retrieve large datasets in Entity Framework Core without hitting SQL Server's 2,100 parameter limit. Discover 5 bulk data retrieval methods from Entity Framework Extensions th
-
New in .NET 10 and C# 14: Optimizations in log aggregation jobs
elmah.io Blog - .NET Technical tutorials/guides and new features Issue #355
.NET 10 is officially out, along with C# 14. Microsoft has released .NET 10 as Long-Term Support (LTS) as a successor to .NET 8. Like every version, it is not just an update but brings something new t...
-
How yield return Reduces Memory by 90% in C#
Medium Issue #354
How stateful iteration cuts memory usage by 90% in .NET — with real-world code examples and performance benchmarks.
-
The Hidden Performance Cost of “Clean Code” in Large .NET Systems
Medium Issue #354
1. The Myth of “Clean Code Is Always Better” Continue reading on CodeToDeploy »
-
Using Redis and Redis Stack with .NET — A Practical, Production‑Ready Guide
Medium Issue #353
Audience: .NET developers building high‑performance, scalable systems Level: Intermediate → Advanced Format: Medium‑style long‑form…
-
Day 6: Indexing in Entity Framework
Medium Issue #353
You’ll find that any foreign keys that get created get automatically indexed. This creation will be found in your migration. But, what if…
-
Latency Is a Feature, Not a Bug
Medium Issue #352
Designing APIs for Perceived Performance in ASP.NET Core
-
One Minute Knowledge: Is ToArrayAsync or ToListAsync faster for Entity Framework?
Steven Giesel Issue #352
Short question, and a short answer: ToListAsync - but why?
-
LINQ in Real Projects: 7 Patterns Every C# Developer Should Know
towardsdev.com Issue #352
Most developers only use LINQ for .Where() and .Select(). Continue reading on Towards Dev »
-
Streaming vs Buffering in .NET APIs — The Performance Difference Nobody Measures
Medium Issue #351
(And why your “fast” API falls apart under real load)
-
Stop Using IMemoryCache in .NET 10: The HybridCache Revolution
Medium Issue #351
Why your custom Redis wrapper is killing your performance — and how to fix it.
-
-
The Core Architects’ Guide to 400% Faster APIs in .NET 10
Medium Issue #350
As core architects, we know that the difference between a functional API and a high-performing one can be staggering. In fact, our recent…
-
How I Built a Self-Healing Service Using Retries, Circuit Breakers, and Smart Backoff
Medium Issue #350
A hands-on guide to resilience patterns with examples from a production environment. Continue reading on CodeX »
-
From .NET to AI: How a C# Developer Is Building Intelligent Enterprise Applications
Medium 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 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 Issue #349
Most .NET developers still treat ConfigureAwait(false) like a superstition.
-
Scott Guthrie Interstitial - Evolution
YouTube 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 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 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 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 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 Issue #348
(Stop rebooting pods and finally fix the real issue)