performance
.NET Performance and Optimization Articles, Tutorials & News
.NET Performance and Optimization articles, tutorials, and news from the DotNetNews archive.
1396 articles Updated Page 34 of 56
Browse additional .NET Performance and Optimization articles from the DotNetNews archive.
.NET Performance and Optimization articles
Page 34 of 56
Newest first
-
Structured Logging in .NET: Why You Should Avoid String Interpolation
mariemoalla.medium.com Issue #264
It’s easy to overlook how small differences in logging syntax can affect performance, log structure, and searchability.
-
⚙️ When Threads Collide: A Real-World Dive into TaskScheduler and IAsyncEnumerable in C#
medium.com Issue #264
“Everything was working fine until… it wasn’t.” That’s how most async bugs introduce themselves in production. Continue reading on CodeToDeploy »
-
Mastering EF Core: A Deep Dive into High-Performance Data Access for Modern .NET Developers
blog.yaseerarafat.com Issue #264
Dive beyond CRUD with EF Core mastery. Debug, optimize, and architect like a pro in a vivid neon-lit future of data-driven development.
-
Supercharge Your .NET 8 Applications with Smart Caching Strategies
medium.com Issue #264
Performance is the silent hero of user experience. When your application responds instantly to user requests, users don’t notice — and… Continue reading on .Net Programming »
-
Entity Framework Core Tip: When to use .Include() vs .Select()
c-sharpcorner.com Issue #264
When querying in Entity Framework Core, both.Include() and .Select() can help shape your data — but they serve different purposes.
-
The Final Boss of Cancellation Tokens in .NET
blog.stackademic.com Issue #263
Performance, pitfalls, and the 5 rules that separate pros from amateurs. Continue reading on Stackademic »
-
Leveling Up with Cancellation Tokens in .NET
blog.stackademic.com Issue #263
Advanced patterns like linked tokens, async streams, and making APIs truly cancellation-aware. Continue reading on Stackademic »
-
Difference Between Task, async/await, and Threading in .NET
c-sharpcorner.com Issue #262
This article explains the core differences between Task, async/await, and traditional Threading in .NET. Learn how they work, when to use each, and how they impact performance, scalability, and readab...
-
.NET 10 Preview 6: The Performance & Security Powerhouse You’ve Been Waiting For
blog.stackademic.com Issue #262
The momentum behind .NET continues its relentless march as Microsoft introduces .NET 10 Preview 6, propelling the development ecosystem… Continue reading on Stackademic »
-
How to Cut Your Cloud Bill in Half with Zero Code Changes in .NET Apps
medium.com Issue #262
No refactors. No new features. Just smart config tuning. Here’s how I saved thousands in cloud costs by tweaking autoscaling, storage… Continue reading on .Net Programming »
-
Mastering Async/Await in C#: Common Pitfalls and How to Avoid Them
medium.com Issue #262
Mastering Async/Await in C#: Common Pitfalls and How to Avoid Them
-
What’s New in .NET 9: Performance and Features Review
medium.com Issue #262
If you want the full source code, download it from this link: https://www.elitesolutions.shop/
-
LINQ : Advanced Techniques Every .NET Developer Should Master in 2025
medium.com Issue #261
Write LINQ that reads like C# and runs like SQL—clean and fast.
-
Multithreading in C# .NET Core: A Real-World Guide (With Code, Mistakes, and Clarity)
medium.com Issue #261
“Why is my app freezing?” “Why is this taking so long to load?” “My API works fine — until multiple users hit it at once…” Continue reading on CodeToDeploy »
-
What are the Best Practices for EF Core Performance Optimization?
c-sharpcorner.com Issue #261
Learn how to optimize Entity Framework Core (EF Core) for high-performance data access. This article covers best practices, from query tuning to memory management, with practical C# code examples. Ide...
-
Why You Should Learn About EF Core AsSplitQuery
medium.com Issue #261
For today we gonna learn to know about .AsSplitQuery() 😊
-
Disabling thread safety check in Entity Framework
steven-giesel.com Issue #261
In this blog post we will have a look into how to disable the thread safety check in Entity Framework. What are the implications of doing so and how to do it.
-
Asynchronous Programming in C# — Comparing it with multi threading
ravindradevrani.medium.com Issue #261
Asynchronous task is a non-blocking task. Main thread goes back to the thread pool (and free to do other tasks) when it reaches to await –…
-
5 Modern C# Features That Will Make Your Code Feel Like Magic
blog.stackademic.com Issue #261
The language evolved. Your code should, too. Continue reading on Stackademic »
-
How is .Net platform independent?
dharinibalasubramaniam.medium.com Issue #261
Understanding the Cross-Platform Nature of .NET with Real-World Analogies
-
5 .NET Tips That Quietly Separate Experts From Everyone Else
blog.stackademic.com Issue #260
Master these, and your code will start feeling as fast and clean as it looks. Continue reading on Stackademic »
-
Real-World Software Architecture in C#: Chapter 11 — Myths and Misinterpretations in .NET
blog.stackademic.com Issue #260
This article series was born from frustration — and experience. Continue reading on Stackademic »
-
Span Isn’t Just a Buzzword — It’s How Microsoft Cuts Allocations in .NET 8+
blog.devgenius.io Issue #260
💡 Sick of shallow Span<T> blogs slicing strings and calling it performance? This is the real deal — practical, production-grade usage… Continue reading on Dev Genius »
-
Stop Looping: Use Dictionary<Guid, T> for Fast Entity Access in .NET
c-sharpcorner.com Issue #260
This post explores a common performance issue in .NET, using collections for ID-based lookups, and presents a cleaner, faster alternative using Dictionary.
-
Belitsoft on ZLinq: Modern LINQ Performance for Legacy .NET Apps
belitsoft.com Issue #260
Eliminate heap allocations while keeping LINQ’s syntax — ideal for high-frequency trading, real-time analytics, and legacy .NET upgrades.