performance
.NET Performance and Optimization Articles, Tutorials & News
.NET Performance and Optimization articles, tutorials, and news from the DotNetNews archive.
1586 articles Updated Page 6 of 64
Browse additional .NET Performance and Optimization articles from the DotNetNews archive.
.NET Performance and Optimization articles
Page 6 of 64
Newest first
-
Cancellation Tokens in ASP.NET Core: How to Cancel Long-Running Requests Correctly
c-sharpcorner.com Issue #513
Master ASP.NET Core cancellation tokens to prevent resource waste on abandoned requests, boosting scalability and responsiveness.
-
Request Timeout Handling in ASP.NET Core 10: Preventing Slow Requests from Hurting Your Application
c-sharpcorner.com Issue #513
Master ASP.NET Core 10 request timeouts to prevent slow requests from crashing your app. Learn configuration, policies, and cancellation for resilient APIs.
-
Analyze MSBuild Binary Logs with Copilot in VS Code
devblogs.microsoft.com Issue #513
You know the moment. CI goes red, or a build that took 8 seconds yesterday now takes 40, and you're staring at a wall of MSBuild output trying to find the one line that matters. The answer is almost a...
-
Cache Me If You Can: A .NET Caching Survival Guide
truestorydavestorey.medium.com Issue #513
Caching is a fundamental part of modern applications, storing data locally or in a distributed manner so that our applications can be…
-
EF Core 10 Performance Tuning: Tracking, Query Filters, Compiled Queries, and Bulk Operations
c-sharpcorner.com Issue #513
Boost EF Core 10 performance with AsNoTracking, query filters, compiled queries, and bulk operations. Optimize your data access layer.
-
Native AOT in .NET 10: When It Helps and When It Hurts
c-sharpcorner.com Issue #513
Explore Native AOT in .NET 10: understand its benefits for faster startups & lower memory, and when it might hurt your apps.
-
Distributed Caching in ASP.NET Core: IMemoryCache vs IDistributedCache Explained
c-sharpcorner.com Issue #512
Master ASP.NET Core caching! Compare IMemoryCache vs IDistributedCache for optimal performance, scalability, and data consistency.
-
Why ASP.NET Core APIs Slow Down Under Load (And How to Fix Them)
c-sharpcorner.com Issue #512
Uncover why ASP.NET Core APIs slow down under load and learn practical fixes for bottlenecks like inefficient DB queries, blocking code, and middleware.
-
Output Caching vs Response Caching in ASP.NET Core: What's the Difference?
c-sharpcorner.com Issue #512
ASP.NET Core: Output Caching vs. Response Caching. Understand the key differences, when to use each, and best practices for optimal performance.
-
ASP.NET Core 11 Request Pipeline Performance Deep Dive
c-sharpcorner.com Issue #512
Optimize your ASP.NET Core app's performance by mastering the request pipeline. Learn middleware order, optimization, and benchmarking for faster APIs.
-
Optimizing Minimal APIs for High-Performance ASP.NET Core Applications
c-sharpcorner.com Issue #512
Optimize ASP.NET Core Minimal APIs for peak performance. Learn techniques for efficient routing, JSON serialization, async programming, caching, and more.
-
IQueryable vs IEnumerable in C# — The Difference Every .NET Developer Should Know
medium.com Issue #511
If you’ve worked with LINQ or Entity Framework, you’ve almost certainly seen these two interfaces:
-
Top 10 TPL (Task Parallel Library) Interview Questions with Examples
c-sharpcorner.com Issue #511
Master TPL with top 10 interview questions & examples. Understand Tasks, async/await, Parallel.ForEach, and cancellation for .NET concurrency.
-
Caching in ASP.NET Core 10: In-Memory, Distributed, and Output Caching Explained
c-sharpcorner.com Issue #511
Master ASP.NET Core 10 caching: In-Memory, Distributed, and Output. Boost performance, reduce load, and ensure scalability for your web apps.
-
Query Performance Tuning in Azure DocumentDB: A Practical Guide
devblogs.microsoft.com Issue #511
Writing a query that works is easy. Writing a query that scales is a different story.
-
10 ASP.NET Core 10 Features That Actually Improve Production Applications
c-sharpcorner.com Issue #511
Discover 10 ASP.NET Core 10 features that boost production apps: security, performance, cloud-native, AI-ready APIs, and developer productivity.
-
-
EF Core Performance Benchmarks: 12 Mistakes That Hurt Query Speed
c-sharpcorner.com Issue #510
Unlock EF Core performance! Discover 12 common mistakes hurting query speed and learn production-ready solutions for faster applications.
-
Resilience in ASP.NET Core: Implementing Retry, Circuit Breaker, Timeout, and Fallback with Polly
c-sharpcorner.com Issue #510
Build resilient ASP.NET Core apps with Polly. Implement retry, circuit breaker, timeout, and fallback for reliable external service communication.
-
Fast at Lunch. Slow at Scale: Why Your App Gets Slow When Real Data Arrives
medium.com Issue #510
A page that feels instant with a few users can become painfully slow when your business grows. The code hasn’t changed. The server hasn’t…
-
Why Every EF Core Developer Needs to Try Entity Framework Extensions
medium.com Issue #509
When building data-intensive applications with Entity Framework Core, you will eventually face a critical performance challenge: inserting… Continue reading on Towards Dev »
-
Entity Framework Core Performance Anti-Patterns in Production
c-sharpcorner.com Issue #509
Master EF Core performance! Avoid common anti-patterns like N+1 queries, over-fetching, and client-side evaluation for faster, scalable .NET apps.
-
The Secret Behind .NET Performance: Understanding Garbage Collection Generations (Gen 0, Gen 1 & Gen 2) in C#
c-sharpcorner.com Issue #509
Unlock .NET performance secrets! Understand Garbage Collection generations (Gen 0, Gen 1, Gen 2) and how they optimize memory management in C#.
-
Faster blob copying in Azure Blob Storage
markheath.net Issue #509
I generally try to avoid copying blobs in Azure and just reference a single copy, but there are some situations where you do need to make a copy. The technique you choose can make a big difference to ...
-
Thread-Safe Collections in C#: Why Dictionary Can Break Under Parallel Execution
medium.com Issue #509
List and Dictionary are probably the collections we use the most in C#.