.NET Performance and Optimization Articles, Tutorials & News
.NET Performance and Optimization articles, tutorials, and news from the DotNetNews archive.
1407 articles Updated Page 21 of 57
.NET Performance and Optimization articles, tutorials, and news from the DotNetNews archive.
.NET Performance and Optimization articles
Page 21 of 57
Newest first
-
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.com 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.com 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.com 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.com 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
andrewlock.net 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
bipinjoshi.net 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.com 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-sharpcorner.com 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.com 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-sharpcorner.com 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.com Issue #330
If you want the full source code, join our community: Here
-
Task vs ValueTask in C#
medium.com 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.com 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.com 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
mennan-sevim.medium.com 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
miguelbarros1983.medium.com Issue #328
A clear and concise guide to EF Core covering modeling, DbContext, CRUD operations, migrations, and performance tips.
-
Comparing ASP.NET Core vs Node.js for High-Traffic APIs
c-sharpcorner.com Issue #328
Explore ASP.NET Core vs Node.js for high-traffic APIs. Compare architecture, performance, scalability, and security to choose the best framework for your needs.
-
How to Find Duplicates in a Collection (Multiple Ways) — With Benchmarks in .NET 9
medium.com Issue #327
Practical implementations, algorithmic analysis, memory considerations, and BenchmarkDotNet code you can run today.
-
I Switched to CreateSlimBuilder — And Saved 15% Memory Without Touching My Code
medium.com Issue #327
Last week, I changed just one line in one of my .NET services.
-
Understanding Span<T> in C#
c-sharpcorner.com Issue #327
Learn how it provides a zero-allocation view over memory for arrays, strings, and more, boosting efficiency and reducing GC overhead