.NET Performance and Optimization Articles, Tutorials & News
.NET Performance and Optimization articles, tutorials, and news from the DotNetNews archive.
1407 articles Updated Page 12 of 57
.NET Performance and Optimization articles, tutorials, and news from the DotNetNews archive.
.NET Performance and Optimization articles
Page 12 of 57
Newest first
-
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!
-
🚀 How to Optimize .NET Applications for Maximum Performance
c-sharpcorner.com Issue #401
Boost .NET app performance! Learn proven strategies: architecture, database optimization, async, caching, memory, compression, monitoring, and smart deployment.
-
5 Common Async Coalescing Patterns
itnext.io Issue #401
Five practical async coalescing patterns: Use First, Use Last, Queue, Debounce, and Aggregate — with demos and code. Continue reading on ITNEXT »
-
Using Redis in ASP.NET Core
c-sharpcorner.com Issue #400
Boost your ASP.NET Core app's performance with Redis! Learn how to implement caching, reduce database load, and handle high traffic efficiently. Step-by-step guide included.
-
How Does Threading Work in C#?
c-sharpcorner.com Issue #400
Unlock C# threading! Learn how to build responsive, scalable .NET apps using threads, Thread Pool, and TPL. Master async/await and synchronization for peak performance.
-
What Is LINQ and How Does It Improve Data Querying in C#?
c-sharpcorner.com Issue #400
Discover LINQ in C#: Simplify data querying, boost code readability, and enhance performance in .NET applications. Ideal for scalable enterprise systems.
-
How to Improve Performance with Threading in .NET
c-sharpcorner.com Issue #400
Unlock .NET performance! Master threading & parallel programming for responsive & efficient apps. Learn Task-based approaches & avoid common pitfalls. Build scalable systems!
-
How to Work with Files and IO in C#?
c-sharpcorner.com Issue #400
Master C# file I/O with System.IO! Learn to read, write, and manage files efficiently in .NET applications. Boost performance and security in cloud environments.
-
Building a Self-Healing .NET Application Using Health Probes and Auto-Restart Strategies
c-sharpcorner.com Issue #399
Build resilient .NET apps with self-healing architecture! Learn health probes, auto-restart strategies, and background monitoring for automatic failure recovery. Achieve high availability!
-
Make Unity Feel Instant: Background Jobs With Thread Manager
medium.com Issue #399
You hit Play, trigger a big file load or pathfinding pass, and your Unity scene freezes for a second or two. Players feel it immediately —…
-
Being stupid is fun: Let's create long exception messages!
steven-giesel.com Issue #399
Sometimes doing arbitrary stuff feels just good! So let's do that!
-
Stop Bleeding Performance: The Ultimate Guide to EF Core with Massive Datasets
medium.com Issue #399
How to tame Entity Framework Core when your database has millions of rows — and why your LINQ queries might be silently destroying your…
-
How LINQ Execution Actually Works: Power of Being Lazy
medium.com Issue #398
Have you ever written a beautifully complex LINQ query, stepped through it with your debugger, and noticed that your app didn’t actually…
-
Observability in .NET with OpenTelemetry
c-sharpcorner.com Issue #398
Explore .NET observability with OpenTelemetry! Learn how to monitor distributed applications using logs, metrics, and traces. Plus, a basic setup example included!
-
LINQ in C#: Understanding the Select() Operator
medium.com Issue #398
When developers first encounter LINQ, they often see Select() as “just a projection method.” But in real systems, Select() is the operator…