performance
.NET Performance and Optimization Articles, Tutorials & News
.NET Performance and Optimization articles, tutorials, and news from the DotNetNews archive.
1396 articles Updated Page 21 of 56
Browse additional .NET Performance and Optimization articles from the DotNetNews archive.
.NET Performance and Optimization articles
Page 21 of 56
Newest first
-
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
-
.NET Core Advanced MCQs — Dependency Injection (DI)
c-sharpcorner.com Issue #326
Test your .NET Core knowledge with these advanced MCQs on Dependency Injection, Middleware, Memory Management & Performance. Sharpen your skills and ace your next interview!
-
SQL Server Indexing Strategies for Faster Query Execution
c-sharpcorner.com Issue #326
Boost SQL Server query speed! Master indexing: clustered, non-clustered, composite, filtered, columnstore. Optimize performance & avoid common pitfalls. A must-read!
-
Stop leaks — master ASP.NET Core lifetimes today
medium.com Issue #326
Master ASP.NET Core service lifetimes — Singleton, Scoped, Transient. Avoid leaks and thread bugs with clear rules, runnable examples, and…
-
The Ultimate Guide to Dapper in .NET — Everything You Need to Know (2025 Edition)
medium.com Issue #326
“Dapper gives you ORM convenience without ORM overhead.” — Every .NET developer who’s ever benchmarked it.
-
C# Parallel Programming for CPU-Bound Workloads (In-Depth Parallel Class Guide)
medium.com Issue #326
Target audience: Intermediate to advanced .NET developers
-
Building an Extremely Fast Caching Repository Using the Decorator Pattern in ASP.NET Core 9.
medium.com Issue #325
Modern web applications demand high performance, low latency, and efficient data retrieval. With ASP.NET Core 9 and C#, you can easily… Continue reading on Stackademic »
-
From Spring Boot to .NET: The Struggle
rasathuraikaran26.medium.com Issue #325
My articles are open to everyone; non-member readers can read the full article by clicking this link Continue reading on Javarevisited »
-
This One Header Can Make Your API 30% Faster
medium.com Issue #324
(And it takes less than 2 minutes to add)
-
Mastering Background Jobs in .NET 9 with Worker Services and Channels
medium.com Issue #324
How to build high-performance background processing systems in .NET 9 — without Hangfire, RabbitMQ, or third-party schedulers
-
Your LINQ is Slowing You Down: 5 Fixes Every .NET Developer Should Know
medium.com Issue #324
Five practical changes that eliminate hidden allocations, buffering, and unnecessary work.
-
How I Accidentally Created a Memory Leak That Taught Me C#’s Darkest Secret
medium.com Issue #324
From 150MB to 4GB in 48 hours: The static event subscription that almost killed our Azure API and what it taught me about .NET’s garbage… Continue reading on .Net Programming »