.NET Performance and Optimization Articles, Tutorials & News
.NET Performance and Optimization articles, tutorials, and news from the DotNetNews archive.
1407 articles Updated Page 33 of 57
.NET Performance and Optimization articles, tutorials, and news from the DotNetNews archive.
.NET Performance and Optimization articles
Page 33 of 57
Newest first
-
Building a Fast .NET Core API with Async Programming
medium.com Issue #270
Every request to an API starts on a thread from the CLR’s pool. With synchronous execution, that thread stays blocked until completion…
-
Efficient Caching Strategies: Write-Through vs. Write-Behind Caching
blog.stackademic.com Issue #270
We will learn about efficient way to update cache so that we will get always updated value in Cache. Continue reading on Stackademic »
-
ArrayPool: The most underused memory optimization in .NET
medium.com Issue #270
Despite offering up to 78x performance improvements and completely eliminating garbage collection pressure, ArrayPool<T> remains one of…
-
When to Use Generic vs Non-Generic Collections in C#
c-sharpcorner.com Issue #270
Discover the differences between generic and non-generic collections in C#. Learn their impact on performance, type safety, and usability with examples, helping you choose the right collection for eff...
-
SQL Server Index Fragmentation: What It Is and How to Fix
c-sharpcorner.com Issue #270
Index fragmentation slows SQL Server queries by disrupting data order. This article explains its causes, types, and impact, while offering practical steps to detect, fix, and prevent fragmentation for...
-
6 Entity Framework Core Performance Pitfalls (and How to Fix Them)
medium.com Issue #270
Avoid these 6 common Entity Framework Core performance pitfalls in .NET — with real-world scenarios, root causes, and refactors.
-
Two more LINQ extensions in dotnet 10
steven-giesel.com Issue #270
The preview 6 of dotnet 10 brings two more functions: InfiniteSequence and Sequence.
-
5 .NET Mistakes That Are Slowing Your Code Down Right Now
blog.stackademic.com Issue #270
Fix these silent killers before they wreck your app’s performance. Continue reading on Stackademic »
-
-
Copilot Diagnostics toolset for .NET In Visual Studio
devblogs.microsoft.com Issue #270
Debugging doesn’t have to be a grind. With Copilot woven into Visual Studio, you get AI-powered breakpoints, insights, exception fixes, and performance summaries all right where you work. The post Co...
-
Indexing Internals for Developers and DBAs
visualstudiomagazine.com Issue #270
Microsoft’s Bradley Ball dives into the inner workings of SQL Server indexing to help developers and DBAs speak the same language, avoid common pitfalls, and boost performance with smarter, more inten...
-
From Stack to Span<T> — A Recap into C#’s Memory
c-sharpcorner.com Issue #269
Explore C# memory management, from stack vs heap to structs and contiguous memory. Learn how Span<T> enables efficient slicing without allocations, optimizing performance and reducing GC overhead i...
-
11 LINQ Calls Microsoft Engineers Replace for Up to ~2× Throughput
blog.devgenius.io Issue #269
(With analyzers, docs, and a reproducible benchmark harness) Continue reading on Dev Genius »
-
Entity Framework Performance Tuning: Tips for Faster Queries
medium.com Issue #269
Best Practices for Optimizing EF Core Performance in .NET
-
Building a High-Performance API with .NET and PostgreSQL
medium.com Issue #269
When I started building APIs, I thought: “If it works, it’s good.” Then came my first production issue: API calls that took forever. I…
-
Stop Picking the Wrong .NET Collection — A Principal Engineer’s Field Guide
towardsdev.com Issue #269
A .NET Engineer’s Field Guide to Lists, Sets, Dictionaries, Queues, Stacks, Sorted, Immutable, Concurrent & Frozen Continue reading on Towards Dev »
-
C# Boxing: A Hidden Performance Enemy (Defeat It Now)
levelup.gitconnected.com Issue #269
Master boxing in C# to write faster, cleaner code. Continue reading on Level Up Coding »
-
EF Core Performance Secrets: Querying at Warp Speed
medium.com Issue #268
Advanced optimization techniques to make Entity Framework Core handle massive datasets with minimal latency.
-
The Art of Disposal: Mastering IDisposable in C#
blog.stackademic.com Issue #267
Avoid leaks and write robust, maintainable .NET applications like a pro Continue reading on Stackademic »
-
Everything You Need to Know About the Latest in C#
youtube.com Issue #267
Async EF Core: Supercharging Queries with ValueTask & AsNoTracking
-
Why Your CancellationToken Doesn’t Actually Cancel Anything (Most of the Time) — And the…
blog.devgenius.io Issue #267
🧠 Why This Blog Matters Every .NET dev has written something like this: Continue reading on Dev Genius »
-
How I Cut My .NET Web App Load Time by 73% with Azure CDN — And How You Can Too
medium.com Issue #267
Discover the exact configuration, caching strategies, and deployment tweaks that transformed a sluggish .NET app into a lightning-fast…
-
5 .NET Performance Tips to Make Your Apps Run Faster and Cleaner
blog.stackademic.com Issue #266
Unlock hidden performance gains with easy-to-apply .NET coding best practices. Continue reading on Stackademic »
-
Bulk Inserts in .NET: Fast, Lock-Friendly with SqlBulkCopy
medium.com Issue #266
Import millions of records in SQL Server with batching for maximum throughput and minimal locking.
-
Async/Await Done Right in .NET for High-Throughput APIs
medium.com Issue #266
Avoiding deadlocks and unlocking true concurrency in production-grade .NET services.