performance
.NET Performance and Optimization Articles, Tutorials & News
.NET Performance and Optimization articles, tutorials, and news from the DotNetNews archive.
1396 articles Updated Page 11 of 56
Browse additional .NET Performance and Optimization articles from the DotNetNews archive.
.NET Performance and Optimization articles
Page 11 of 56
Newest first
-
Why Your C# AI Agents Will Fail in Production (And How to Fix It)
levelup.gitconnected.com Issue #408
The transition from a cool AI prototype running in a Jupyter Notebook to a production-grade, scalable microservice is where most projects… Continue reading on Level Up Coding »
-
I Compared .NET and MERN in 2026 — Here’s the Brutally Honest Truth
medium.com Issue #408
Let’s be honest.
-
What’s the Fastest Way to Save Large Amounts of Data in .NET?
medium.com Issue #408
If you’ve ever needed to save a large amount of data to a database in .NET, you’ve probably wondered: What’s the fastest way to do it?
-
-
How to Implement Redis Caching in ASP.NET Core?
c-sharpcorner.com Issue #407
Boost ASP.NET Core performance with Redis caching! Learn to implement it for faster response times, reduced database load, and improved scalability. Production-ready guide.
-
The Million-Request Crash: Taming the “Cache Stampede” in Distributed Systems
medium.com Issue #407
How the “Thundering Herd” problem turns your caching layer into a database killer, and the advanced patterns top-tier engineers use to…
-
Cracking the Code of Serverless Design: Patterns that Scale and Patterns that Fail
visualstudiomagazine.com Issue #407
Chad Green explores how intentional design patterns determine whether serverless architectures deliver on their promises of scalability, resilience, and cost efficiency.
-
MSSQL Extension for VS Code: Query Profiler, ADS Migration Toolkit & More
devblogs.microsoft.com Issue #407
The MSSQL Extension for VS Code continues to evolve, delivering features that make SQL development more integrated, more powerful, and more developer-friendly. In version v1.40.0, we're introducing th...
-
How Async and Await Work Internally in C#?
c-sharpcorner.com Issue #407
Unlock C#'s async/await secrets! Explore state machines, task-based patterns, and synchronization contexts for scalable, responsive apps. Avoid deadlocks and boost performance.
-
.NET Memory Dump Analysis with DumpLinq
medium.com Issue #407
Long-running services that handle millions of requests will occasionally end up in a bad state and require a restart.
-
10 C# Mistakes Developers Make (And How to Avoid Them)
medium.com Issue #406
C# and .NET have matured into one of the most powerful ecosystems for building APIs, enterprise systems, cloud apps, and high-performance… Continue reading on CodeToDeploy »
-
In Agentic AI, It's All About the Markdown
visualstudiomagazine.com Issue #406
Markdown is emerging in VS Code and Visual Studio 2026 as a version-controlled instruction layer that governs AI agents, reusable prompts and modular skills alongside traditional documentation.
-
How to Reverse a String in C#
c-sharpcorner.com Issue #405
Learn two efficient methods to reverse strings in C# using Array.Reverse() and loops. Understand the immutability of strings, performance considerations, and real-world applications. Master this funda...
-
-
Why I Replaced Microsoft’s DI Container — And Never Looked Back
fries-dotnet-legacy.medium.com Issue #404
DryIoC delivers what the built-in container promises but can’t keep: speed, flexibility, and control over complex dependency graphs.
-
CurlDelegating Handler in .NET
srinjoysantra.medium.com Issue #404
Debug your .NET core http client requests by logging as curl
-
What’s the Fastest Way to Save Large Amounts of Data in .NET?
medium.com Issue #404
If you’ve ever needed to save a large amount of data to a database in .NET, you’ve probably wondered: What’s the fastest way to do it?
-
-
The Million-Request Crash: Taming the “Cache Stampede” in Distributed Systems
medium.com Issue #403
How the “Thundering Herd” problem turns your caching layer into a database killer, and the advanced patterns top-tier engineers use to…
-
How Async and Await Work Internally in C#?
c-sharpcorner.com Issue #403
Unlock C#'s async/await secrets! Explore state machines, task-based patterns, and synchronization contexts for scalable, responsive apps. Avoid deadlocks and boost performance.
-
.NET Memory Dump Analysis with DumpLinq
medium.com Issue #403
Long-running services that handle millions of requests will occasionally end up in a bad state and require a restart.
-
What is the Difference Between Task and ValueTask in C#?
c-sharpcorner.com Issue #402
Unlock C# async efficiency! Learn the Task vs. ValueTask difference for optimized performance. Discover when to use each for high-performance apps and avoid common pitfalls.
-
Parallel Programming in C#: The Complete Guide to Task Parallel Library (TPL) for High-Performance Applications
c-sharpcorner.com Issue #402
Unlock C# parallel programming with TPL! Master multi-core utilization, boost performance, and build scalable apps. Learn TPL architecture, best practices, and avoid common pitfalls.
-
Async/Await Best Practices in C#: Building Scalable and High-Performance .NET Applications
c-sharpcorner.com Issue #401
Master C# async/await for scalable .NET apps! Learn best practices for I/O-bound operations, avoid blocking, and optimize performance. Build responsive, efficient applications.
-
Difference Between IEnumerable and IQueryable in LINQ?
c-sharpcorner.com Issue #401
Unlock LINQ performance! Discover the crucial differences between IEnumerable and IQueryable for efficient data querying in .NET. Optimize your ASP.NET Core apps!