performance
.NET Performance and Optimization Articles, Tutorials & News
.NET Performance and Optimization articles, tutorials, and news from the DotNetNews archive.
1586 articles Updated Page 40 of 64
Browse additional .NET Performance and Optimization articles from the DotNetNews archive.
.NET Performance and Optimization articles
Page 40 of 64
Newest first
-
A Step-by-Step Guide for the Cache-Aside Pattern + Stampede Protection
Medium Issue #271
If you want the full source code, download it from this link: https://www.elitesolutions.shop/
-
The Real Cost of Abstractions in .NET
Milan's .NET Weekly Issue #271
Not all abstractions are created equal. Some isolate real volatility and protect your system from change. Others quietly pile up complexity and hide performance problems. Learn when to embrace abstrac...
-
The Overlooked Importance of CancellationToken in .NET APIs
Medium Issue #271
Why respecting (and sometimes ignoring) CancellationToken is critical for building efficient, reliable, and consistent .NET APIs.
-
What’s New in .NET 9: Exploring C# 12 Features and Serverless Performance
Medium Issue #270
Deep dive: Explore cutting-edge C# 12 features in .NET 9 and benchmark their serverless performance on Linux and Windows containers. Continue reading on .Net Programming »
-
Building a Fast .NET Core API with Async Programming
Medium 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 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# Corner 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# Corner 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 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 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
Microsoft Dev Blogs 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
Visual Studio Magazine 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# Corner 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 Issue #269
Best Practices for Optimizing EF Core Performance in .NET
-
Building a High-Performance API with .NET and PostgreSQL
Medium 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 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 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 »