performance
.NET Performance and Optimization Articles, Tutorials & News
.NET Performance and Optimization articles, tutorials, and news from the DotNetNews archive.
1586 articles Updated Page 37 of 64
Browse additional .NET Performance and Optimization articles from the DotNetNews archive.
.NET Performance and Optimization articles
Page 37 of 64
Newest first
-
Visual Studio 2026 Insiders is here!
Microsoft Dev Blogs Issue #288
Visual Studio 2026 Insiders is here - and it marks one of the most ambitious steps forward we’ve taken with the IDE. This release brings AI woven directly into the developer workflow, performance impr...
-
The Hidden Performance Costs of Popular .NET Libraries
blog.devgenius.io Issue #287
As .NET developers, we often reach for popular libraries to accelerate development and follow established patterns. Libraries like… Continue reading on Dev Genius »
-
Performance Improvements in .NET 10
Microsoft Dev Blogs Issue #287
My kids love "Frozen". They can sing every word, re-enact every scene, and provide detailed notes on the proper sparkle of Elsa's ice dress. I've seen the movie more times than I can recount...
-
Fast Excel Template Replacement in .NET — OpenXmlSdk vs ClosedXML
marius-schroeder.de Issue #287
Quick wins, real benchmarks, and when to trade developer joy for raw speed. Continue reading on Medialesson »
-
Modern C# Span Magic: High-Perf APIs Without GC Spikes
Medium Issue #287
Practical patterns with Span<T>/ReadOnlySpan<T> to kill allocations, tame the GC, and keep your APIs fast under load.
-
5 Async C# Tricks That Separate Juniors from Seniors
blog.stackademic.com Issue #287
Master these battle-tested patterns and never write sluggish awaits again. Ignore them, and you’re leaving performance and responsiveness… Continue reading on Stackademic »
-
In-Memory Cache vs Distributed Cache — Which One Powers Your System Better?
Medium Issue #287
Every millisecond matters in modern apps. That’s why caching is one of the most powerful performance boosters: it stores frequently…
-
How does caching improve website performance?
C# Corner Issue #287
Caching is a vital technique for boosting website performance. By storing frequently accessed data in a temporary location, it reduces server load, speeds up load times, and improves user experience. ...
-
How Do You Optimize Performance with LINQ Tricks?
Medium Issue #286
LINQ (Language-Integrated Query) is one of the most powerful features in .NET.
-
Part 6 — GC in .NET 8 and Beyond: What’s New and What’s Next
Medium Issue #286
The .NET Garbage Collector (GC) has come a long way — from basic memory cleanup to a finely tuned performance engine. With .NET 8…
-
Designing, Securing, and Optimizing SQL Server: A Realistic E-Commerce Example
C# Corner Issue #286
Learn schema design principles, indexing strategies for query tuning, and efficient ETL processes for data loading. Implement robust backup and recovery plans, secure your database with role-based acc...
-
-
Why .NET 8 remains the backbone of backend development in 2025 — fast, scalable, cloud-ready, and powered by AI
C# Corner Issue #286
.NET 8 solidifies its position as a leading backend development framework in 2025. Explore its speed, scalability, and cloud-readiness, enhanced by AI integration. Discover the latest features, perfor...
-
Performance Improvements in Our .NET Application
Medium Issue #285
Today, we gonna look at the tips that can make your .NET application faster ⏩
-
Part 5 — GC Myths Busted: What Developers Get Wrong About .NET Garbage Collection
Medium Issue #284
Garbage Collection (GC) in .NET is one of the most misunderstood features. Despite being automatic, it’s not magic — and believing the…
-
Using a cache in a clean way in ASP.NET Core
Medium 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# Corner 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!
Medium 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 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# Corner 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 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 Issue #282
I came across this in a job description and was immediately intrigued.
-
Task Parallel Library (TPL) in .NET — Beyond Async/Await
Medium Issue #282
Harnessing Parallelism for Performance