performance
.NET Performance and Optimization Articles, Tutorials & News
.NET Performance and Optimization articles, tutorials, and news from the DotNetNews archive.
1586 articles Updated Page 28 of 64
Browse additional .NET Performance and Optimization articles from the DotNetNews archive.
.NET Performance and Optimization articles
Page 28 of 64
Newest first
-
ASP.NET Core 9 APIs — Faster Endpoints for C# Developers
Medium Issue #334
Minimal APIs just got a massive performance boost with 93% less memory consumption and 15% more throughput
-
Reinventing how .NET Builds and Ships (Again) - .NET Blog
Microsoft Dev Blogs Issue #334
An exploration of how .NET evolved from a distributed build system to Unified Build, dramatically reducing complexity and build times while improving flexibility and predictability for shipping .NET r...
-
How Proper Logging Reduced Our Debug Time by 70% in .NET
Medium Issue #334
For a long time, our .NET services produced logs, but those logs were not useful. They were inconsistent, missing context, and difficult…
-
WebAssembly .NET
Medium Issue #334
The definitive guide to WebAssembly as the ubiquitous runtime in 2025 — from .NET 10’s Native AOT compilation achieving 6x performance…
-
5 .NET Collection Techniques That Stop Slowdowns Before They Start
blog.stackademic.com Issue #334
Low effort tweaks that remove allocations, locks, and pointless overhead Continue reading on Stackademic »
-
Mastering Asynchronous Methods in C# for Faster Applications
Medium Issue #334
In today’s fast-paced digital world, applications are expected to run smoothly, respond quickly, and handle multiple tasks efficiently…
-
5 .NET Memory Optimization Patterns for High-Performance Systems
blog.stackademic.com Issue #333
Real production-grade strategies to prevent GC pressure and increase throughput. Continue reading on Stackademic »
-
5 Underrated C# Moves That Make You Wonder Why You Ever Wrote Code the Old Way
Medium Issue #333
Practical language tools that remove boilerplate, reduce bugs, and make your intent obvious. Continue reading on Stackademic »
-
Fire-and-Forget in .NET: The Silent Trap You Don’t See Coming
Medium Issue #333
I’ve been a senior .NET developer for 20 years, and one thing that constantly jumps out at me is how often code just works — both in tests…
-
How to Make Your ASP.NET Core APIs Fast: Practical Optimization Tips
Medium Issue #332
A simple and effective way to make your ASP.NET Core APIs faster without rewriting the entire codebase.
-
Companies complaining .NET moves too fast should just pay for post-EOL support
Andrew Lock | .NET Escapades Issue #332
In this post I describe a solution to .NET "releasing too quickly": just pay for support of older versions, such as HeroDevs' Never Ending Support for .NET 6
-
Inside Kestrel: The Beating Heart of ASP.NET Core
Bipin Joshi .NET | Thus said a Byte • Insights on .NET and Web Development Issue #332
When you build an ASP.NET Core application and run it with a simple dotnet run, something powerful starts working quietly in the background — the Kestrel web server. It listens for HTTP requests, mana...
-
The Simple Way to Understand Unmanaged Resources in .NET
Medium Issue #331
Many developers think the Garbage Collector (GC) handles everything in .NET. But that’s not completely true — some things live outside of…
-
Implementing Distributed Caching with Redis in ASP.NET Core for Scalable Applications
C# Corner Issue #331
Boost ASP.NET Core app performance with Redis distributed caching! Learn to set up, configure, and implement caching for scalable, high-traffic applications. Optimize your database workload and improv...
-
Carbon Aware Computing - Using .NET Open Source libraries for more sustainable applications
YouTube Issue #331
This talk will show how these patterns can be implemented with Open Source .NET Libraries - on prem, in the cloud with Azure PaaS or in Kubernetes and what options an application has to “shed” the loa...
-
Efficient Background Task Processing in ASP.NET Core Using Hangfire and Quartz.NET
C# Corner Issue #331
Master background task processing in ASP.NET Core using Hangfire and Quartz.NET. Learn to implement asynchronous tasks, improve performance, and enhance user experience.
-
9 Counter-Intuitive Ways “Incomplete” DDD Aggregates Make Your App Faster (Without Breaking the…
Medium Issue #330
If you want the full source code, join our community: Here
-
Task vs ValueTask in C#
Medium Issue #330
Asynchronous programming is a core part of modern .NET applications. But when it comes to performance-sensitive code, developers often…
-
Choosing Between Dapper and Entity Framework: A Practical Guide for Real-World Projects
Medium Issue #329
Learn how project size, complexity, and performance needs decide the right ORM for your .NET application.
-
EF Core Performance Improvements With The New ExecuteUpdate & ExecuteDelete in .NET
Medium Issue #329
By: (Mori) A Complete Guide for .NET 9 Developers Continue reading on JavaScript in Plain English »
-
-
5 .NET Async Habits That Separate Senior Engineers From Everyone Else
blog.stackademic.com Issue #328
Real patterns that scale instead of silently breaking under load Continue reading on Stackademic »
-
.NET 10: The 10 Biggest Features You Need to Know
Medium Issue #328
If you’re a .NET developer, get ready — .NET 10 has officially arrived, and it’s a Long Term Support (LTS) release. That means you’ll get…
-
50 C#/.NET Code Hacks to Improve Fast
amarozka.dev Issue #328
Real C#/.NET tips with short code samples. Cleaner syntax, safer async, faster APIs, fewer bugs. Copy‑paste ready and team‑friendly. Continue reading on .Net Code Chronicles »
-
Entity Framework Core: The Essential Guide for .NET Developers
Medium Issue #328
A clear and concise guide to EF Core covering modeling, DbContext, CRUD operations, migrations, and performance tips.