.NET Performance and Optimization Articles, Tutorials & News
.NET Performance and Optimization articles, tutorials, and news from the DotNetNews archive.
1407 articles Updated Page 31 of 57
.NET Performance and Optimization articles, tutorials, and news from the DotNetNews archive.
.NET Performance and Optimization articles
Page 31 of 57
Newest first
-
Extremely FAST Caching Repository With Decorator Pattern in ASP.NET Core
medium.com Issue #281
If you want the full source code, download it from this link: https://www.elitesolutions.shop/
-
Memory in .NET Applications
medium.com Issue #281
1. What is Memory? Continue reading on easydotnet »
-
Understanding Garbage Collection (GC) in .NET: A Pro’s Guide
medium.com Issue #280
Managing memory is one of the trickiest challenges of modern application development. .NET streamlines this process with its built-in…
-
Span and Memory in C#: Complete Guide to Zero-Allocation Performance in .NET
levelup.gitconnected.com Issue #280
Discover how Span<T> and Memory<T> revolutionize performance in .NET by eliminating unnecessary allocations. A comprehensive technical… Continue reading on Level Up Coding »
-
Mastering Advanced LINQ in C# (Part 2) — Grouping, Joins, Nesting & Parallel Queries
frontend2backend.medium.com Issue #280
If you’re a C# developer, you already know that LINQ (Language Integrated Query) is one of the most powerful features in the .NET…
-
The Hidden Performance Traps in C# You’re Probably Ignoring
medium.com Issue #279
C# and the .NET runtime provide a modern, safe, and powerful development platform. However, performance pitfalls are everywhere — even in…
-
Top 5 Logging Frameworks for .NET Developers
malshikay.medium.com Issue #279
Best logging tools for .NET developers
-
Why ValueTask Can Save You from Async Overhead
mariemoalla.medium.com Issue #279
Asynchronous programming in C# is built on top of the Task and async/await model. For most scenarios, using Task is perfectly fine. But if…
-
Address Resolution Protocol (ARP) in Networking: How It Works
c-sharpcorner.com Issue #279
Unlock the secrets of ARP (Address Resolution Protocol)! This guide explains how ARP translates IP addresses to MAC addresses, enabling seamless communication on local networks. Learn about ARP reques...
-
The $2,000 Line of C# I Shouldn’t Have Written
towardsdev.com Issue #279
Why This Blog Matters Continue reading on Towards Dev »
-
How To Optimize EF Core Query Performance With Compiled Queries
medium.com Issue #279
Entity Framework Core’s compiled queries are one of the most underutilized performance optimization features available to .NET developers…
-
Introduction To Building Distributed Applications with Microsoft Orleans
learn-code-learn.medium.com Issue #279
Microsoft Orleans (also known as Orleans .NET) is a cross-platform framework that helps developers build distributed, scalable, and…
-
One Trick To Improve EF Core Performance Using Query Splitting
medium.com Issue #279
If you want the full source code, download it from this link: https://www.elitesolutions.shop/
-
What is the difference between linear and non-linear data structures?
c-sharpcorner.com Issue #279
Unlock the power of Data Structures and Algorithms (DSA) by understanding the core difference between linear and non-linear data structures. This guide breaks down the sequential nature of arrays, lin...
-
Caching Layers in .NET with Redis, MemoryCache, and Policy Fallbacks
medium.com Issue #278
How layered caching strategies in .NET can supercharge performance while keeping your system resilient.
-
Minimizing Cold Starts in Azure Functions for .NET
medium.com Issue #278
Pre-warming, scaling tiers, and smart architecture choices that keep your serverless apps snappy.
-
Boost Your .NET App Performance with MongoDB Query Optimization
itnext.io Issue #278
Learn practical techniques to speed up MongoDB queries, reduce latency, and scale your .NET applications effortlessly. Continue reading on ITNEXT »
-
Top 10 Modern C# Performance Features That Made My .NET Apps 3x Faster
medium.com Issue #278
As a .NET developer working in high-stakes domains like legal practice management and insurance verification systems, performance isn’t… Continue reading on ILLUMINATION’S MIRROR »
-
The One Line That Made My LINQ 5× Faster (You’re Still Writing It Wrong)
blog.devgenius.io Issue #278
Why This Blog Matters Continue reading on Dev Genius »
-
How ValueTask Boosts .NET Performance with Zero Allocations
itnext.io Issue #277
Slash memory overhead in async C# code with practical ValueTask examples for high-throughput APIs Continue reading on ITNEXT »
-
Memory Management and Garbage Collection in .NET — A Deep Dive
medium.com Issue #277
When writing C# code, memory is being allocated and released behind the scenes. Unlike languages like C or C++, where developers manually…
-
Boost Your .NET Projects: Find the Fastest Way to Get an Item’s Index in Arrays
dotnettips.wordpress.com Issue #277
This article examines the performance of three index-finding methods in .NET arrays: Array.BinarySearch (O(log n)), Array.FindIndex (O(n)), and Array.IndexOf (O(n)).
-
Why Async/Await Is the Secret to Scalable .NET Apps
medium.com Issue #276
Mastering Asynchronous Programming for Performance and Scalability
-
Boosting Performance in EF Core with Second-Level Cache (Without External Packages)
medium.com Issue #276
Applying the Repository Pattern for Cached Data Access.
-
The 3-Letter C# Keyword That Halves Allocations (And You’re Still Not Using It)
towardsdev.com Issue #275
Why This Blog Matters Continue reading on Towards Dev »