.NET Performance and Optimization Articles, Tutorials & News
.NET Performance and Optimization articles, tutorials, and news from the DotNetNews archive.
1407 articles Updated Page 32 of 57
.NET Performance and Optimization articles, tutorials, and news from the DotNetNews archive.
.NET Performance and Optimization articles
Page 32 of 57
Newest first
-
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.com 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.com 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.com 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.com 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.com Issue #274
Part 2 of The .NET 9 Cookbook Series Continue reading on .Net Programming »
-
The Little .NET Fixes That Make a Big Difference
singhsukhpinder.medium.com Issue #274
Part 4 of The .NET 9 Cookbook Series
-
Invisible .NET Performance Killers: Framework Features That Fail at Scale
medium.com 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-sharpcorner.com 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.com Issue #272
Essential Tools for Managing Multithreading in .NET
-
How Can You Optimize the Performance and Scalability of a Node.js Application?
c-sharpcorner.com 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-sharpcorner.com 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.com 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
dotnettips.wordpress.com 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-sharpcorner.com 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...
-
A Step-by-Step Guide for the Cache-Aside Pattern + Stampede Protection
medium.com 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
milanjovanovic.tech 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.com 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.com 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 »