performance
.NET Performance and Optimization Articles, Tutorials & News
.NET Performance and Optimization articles, tutorials, and news from the DotNetNews archive.
1586 articles Updated Page 39 of 64
Browse additional .NET Performance and Optimization articles from the DotNetNews archive.
.NET Performance and Optimization articles
Page 39 of 64
Newest first
-
Boost Your .NET Projects: Find the Fastest Way to Get an Item’s Index in Arrays
WordPress Issue #277
This article examines the performance of three index-finding methods in .NET arrays: Array.BinarySearch (O(log n)), Array.FindIndex (O(n)), and Array.IndexOf (O(n)).
-
Why Async/Await Is the Secret to Scalable .NET Apps
Medium Issue #276
Mastering Asynchronous Programming for Performance and Scalability
-
Boosting Performance in EF Core with Second-Level Cache (Without External Packages)
Medium Issue #276
Applying the Repository Pattern for Cached Data Access.
-
The 3-Letter C# Keyword That Halves Allocations (And You’re Still Not Using It)
towardsdev.com Issue #275
Why This Blog Matters Continue reading on Towards Dev »
-
5 .NET Optimizations That Will Make Your Code Instantly Faster
blog.stackademic.com Issue #275
No silver bullets, just practical tweaks that save CPU cycles and memory in hot paths. Continue reading on Stackademic »
-
10 .NET 9 Performance Fixes That Saved My API from Going Down
Medium Issue #275
Part 1 of The .NET 9 Cookbook Series Continue reading on .Net Programming »
-
5 .NET Performance Traps Every Developer Falls Into (At Least Once)
blog.stackademic.com Issue #275
Master these under-the-radar habits to write safer, faster, and cleaner C# code. Continue reading on Stackademic »
-
-
The C# Feature That Saves You Thousands… But No One Talks About
blog.devgenius.io Issue #274
Why This Blog Matters Continue reading on Dev Genius »
-
Performance tips in C# that won’t cost you anything
Medium Issue #274
Use Count if you know the exact size of the array
-
The Most Expensive Line of Code I Ever Wrote in C#
Medium Issue #274
Why This Blog Matters Continue reading on Towards Dev »
-
Async vs Parallel in .NET Explained: Stop Mixing Them Up
levelup.gitconnected.com Issue #274
Learn the difference between asynchronous I/O and true parallel execution in C#, and when to use each for scalable apps. Continue reading on Level Up Coding »
-
The EF Core Tuning Guide Microsoft Forgot to Write
Medium Issue #274
Part 3 of The .NET 9 Cookbook Series Continue reading on .Net Programming »
-
Stop Allocating So Much: .NET 9 Cache and Memory Hacks That Actually Work
Medium Issue #274
Part 2 of The .NET 9 Cookbook Series Continue reading on .Net Programming »
-
The Little .NET Fixes That Make a Big Difference
Medium Issue #274
Part 4 of The .NET 9 Cookbook Series
-
Invisible .NET Performance Killers: Framework Features That Fail at Scale
Medium Issue #274
Learn how LINQ, async/await, EF, DI, and logging quietly degrade performance at enterprise scale. Continue reading on .Net Programming »
-
C# Memory Leak
C# Corner Issue #273
Learn how to prevent memory leaks in C# caused by static event handlers. This guide explains IDisposable, SafeSubscriber, and best practices for managing event subscriptions and garbage collection in ...
-
5 Advanced String Tricks That Will Instantly Level Up Your Code
blog.stackademic.com Issue #273
Utilize these modern patterns to conserve memory, prevent bugs, and enhance performance. Continue reading on Stackademic »
-
Thread Safety in .NET: Best Practices for Concurrency
Medium Issue #272
Essential Tools for Managing Multithreading in .NET
-
How Can You Optimize the Performance and Scalability of a Node.js Application?
C# Corner Issue #272
In this article, we will explore various methods to enhance the performance and scalability of a Node.js application. We’ll use simple words, practical examples, and best practices to make sure you ca...
-
When To Use ToList() and ToArray()?
C# Corner Issue #272
Choosing between .ToList() and .ToArray() in C# depends on usage: use .ToList() for collections needing modification; use .ToArray() for fixed-size, read-only collections—optimized in .NET 9 for perfo...
-
Database Indexing in .NET with EF Core — Boost Your Query Performance
Medium Issue #272
Learn how to improve query performance in your .NET applications using database indexing with Entity Framework Core. Includes examples…
-
The Ultimate C# String Concatination Cheat Sheet
blog.stackademic.com Issue #272
Because apparently + isn’t good enough for your 10,000-line JSON payload. Continue reading on Stackademic »
-
Boost Your .NET Projects: Harness the Power of Async Queues with Spargine’s ChannelQueue
WordPress Issue #271
The Spargine library introduces ChannelQueue, an efficient, thread-safe queue for .NET asynchronous programming, addressing the lack of a built-in async queue. It supports various features like async ...
-
How Can You Optimize the Performance and Scalability of a Node.js Application?
C# Corner Issue #271
In this article, we will explore various methods to enhance the performance and scalability of a Node.js application. We’ll use simple words, practical examples, and best practices to make sure you ca...