performance
.NET Performance and Optimization Articles, Tutorials & News
.NET Performance and Optimization articles, tutorials, and news from the DotNetNews archive.
1586 articles Updated Page 38 of 64
Browse additional .NET Performance and Optimization articles from the DotNetNews archive.
.NET Performance and Optimization articles
Page 38 of 64
Newest first
-
💻 Issue 478 - Visual Studio Next Version: What’s Coming and What to Expect - NDepend Blog
Awesome .NET Weekly Issue #282
How I Took My .NET 9 Minimal API From 400ms to 40ms (Without Losing My Mind)
-
.NET Core Console App’te .exe Dosyası Bulunamıyor Sorunu ve Çözümü
Medium Issue #282
.NET Core Console Application projesinde katmanlı mimari kullanılıyor ve diğer projelerden interface ve entity’lerden faydalanılıyor…
-
What is WebAssembly in Web Development?
C# Corner Issue #282
WebAssembly (Wasm) revolutionizes web development by enabling near-native performance in browsers. Compile code from languages like C++ and Rust for demanding tasks like gaming, video editing, and sci...
-
Entire Caching Strategy will be replaced by this .NET 9 Feature
Medium Issue #281
Hybrid cache in production
-
Extremely FAST Caching Repository With Decorator Pattern in ASP.NET Core
Medium Issue #281
If you want the full source code, download it from this link: https://www.elitesolutions.shop/
-
-
Understanding Garbage Collection (GC) in .NET: A Pro’s Guide
Medium 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
Medium 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 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
Medium Issue #279
Best logging tools for .NET developers
-
Why ValueTask Can Save You from Async Overhead
Medium 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# Corner 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 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
Medium 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 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# Corner 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 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 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 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 Issue #277
When writing C# code, memory is being allocated and released behind the scenes. Unlike languages like C or C++, where developers manually…