performance
.NET Performance and Optimization Articles, Tutorials & News
.NET Performance and Optimization articles, tutorials, and news from the DotNetNews archive.
1396 articles Updated Page 30 of 56
Browse additional .NET Performance and Optimization articles from the DotNetNews archive.
.NET Performance and Optimization articles
Page 30 of 56
Newest first
-
Using a cache in a clean way in ASP.NET Core
medium.com Issue #284
Inject a cache directly in the controller where you need to use it — it’s not the good approach to implement caching in your app.
-
EF Core Bulk Operations
c-sharpcorner.com Issue #284
Optimize EF Core performance when dealing with large datasets! This article explores various bulk operation techniques, from built-in options like ExecuteUpdate/Delete to powerful third-party librarie...
-
Visual Studio 2026 Just Landed |You Won’t Believe the Speed Boosts!
isitvritra101.medium.com Issue #284
The Visual Studio family is one of Microsoft’s flagship developer tools, used by around 50 million worldwide, and it continues to evolve…
-
Async, Await, and Tasks: The C# Fundamentals You Can’t Afford to Ignore
blog.stackademic.com Issue #283
Understand thread context, task execution, and why improper async usage can haunt your apps. Continue reading on Stackademic »
-
Building a Real-Time Process Monitor in .NET 8
medium.com Issue #283
If you’ve ever worked on a Linux machine, you’re probably familiar with htop. It's a beloved command-line tool that provides a dynamic…
-
Find High-Usage Queries and Stored Procedures in SQL Server
c-sharpcorner.com Issue #283
Identify the SQL statements and stored procedures that burn the most CPU, IO, and time using SQL Server DMVs—plus quick scripts, filters, and tips to fix them.
-
5 .NET Memory Leaks That Took Down Our Apps (and How We Fixed Them)
medium.com Issue #283
Five real .NET memory leaks from production — the symptoms, debugging steps, and fixes that saved our systems.
-
The Hidden Traps of Async in C#
blog.stackademic.com Issue #283
Dive into thread context, blocking calls, and safe patterns for library and UI code. Continue reading on Stackademic »
-
6 Rules for Ultra-Low Latency Data Access at Massive Scale in C#
medium.com Issue #282
I came across this in a job description and was immediately intrigued.
-
Task Parallel Library (TPL) in .NET — Beyond Async/Await
medium.com Issue #282
Harnessing Parallelism for Performance
-
💻 Issue 478 - Visual Studio Next Version: What’s Coming and What to Expect - NDepend Blog
dotnet.libhunt.com Issue #282
How I Took My .NET 9 Minimal API From 400ms to 40ms (Without Losing My Mind)
-
.NET Core Console App’te .exe Dosyası Bulunamıyor Sorunu ve Çözümü
emrekabali.medium.com Issue #282
.NET Core Console Application projesinde katmanlı mimari kullanılıyor ve diğer projelerden interface ve entity’lerden faydalanılıyor…
-
What is WebAssembly in Web Development?
c-sharpcorner.com Issue #282
WebAssembly (Wasm) revolutionizes web development by enabling near-native performance in browsers. Compile code from languages like C++ and Rust for demanding tasks like gaming, video editing, and sci...
-
Entire Caching Strategy will be replaced by this .NET 9 Feature
isitvritra101.medium.com Issue #281
Hybrid cache in production
-
Extremely FAST Caching Repository With Decorator Pattern in ASP.NET Core
medium.com Issue #281
If you want the full source code, download it from this link: https://www.elitesolutions.shop/
-
Memory in .NET Applications
medium.com Issue #281
1. What is Memory? Continue reading on easydotnet »
-
Understanding Garbage Collection (GC) in .NET: A Pro’s Guide
medium.com Issue #280
Managing memory is one of the trickiest challenges of modern application development. .NET streamlines this process with its built-in…
-
Span and Memory in C#: Complete Guide to Zero-Allocation Performance in .NET
levelup.gitconnected.com Issue #280
Discover how Span<T> and Memory<T> revolutionize performance in .NET by eliminating unnecessary allocations. A comprehensive technical… Continue reading on Level Up Coding »
-
Mastering Advanced LINQ in C# (Part 2) — Grouping, Joins, Nesting & Parallel Queries
frontend2backend.medium.com Issue #280
If you’re a C# developer, you already know that LINQ (Language Integrated Query) is one of the most powerful features in the .NET…
-
The Hidden Performance Traps in C# You’re Probably Ignoring
medium.com Issue #279
C# and the .NET runtime provide a modern, safe, and powerful development platform. However, performance pitfalls are everywhere — even in…
-
Top 5 Logging Frameworks for .NET Developers
malshikay.medium.com Issue #279
Best logging tools for .NET developers
-
Why ValueTask Can Save You from Async Overhead
mariemoalla.medium.com Issue #279
Asynchronous programming in C# is built on top of the Task and async/await model. For most scenarios, using Task is perfectly fine. But if…
-
Address Resolution Protocol (ARP) in Networking: How It Works
c-sharpcorner.com Issue #279
Unlock the secrets of ARP (Address Resolution Protocol)! This guide explains how ARP translates IP addresses to MAC addresses, enabling seamless communication on local networks. Learn about ARP reques...
-
The $2,000 Line of C# I Shouldn’t Have Written
towardsdev.com Issue #279
Why This Blog Matters Continue reading on Towards Dev »
-
How To Optimize EF Core Query Performance With Compiled Queries
medium.com Issue #279
Entity Framework Core’s compiled queries are one of the most underutilized performance optimization features available to .NET developers…