Another small but welcome performance improvement in .NET 6 is with item retrieval times when using ImmutableList…
It looks like this performance boost is achieved by removing duplicate and unnecessary range checks.
You might also be interested in...
.NET 6 performance improvements when comparing two arrays using SequenceEqualsThere’s some pretty impressive performance improvements in .NET 6 when we are comparing arrays using the LINQ SequenceEqual method. The … Continue reading .NET 6 performance improvements when comparing two...
HTTP/2 performance improvements in .NET 7
In .NET 6 the built in Kestrel server controlled how HTTP/2 requests accessed a TCP connection via a lock, this … Continue reading HTTP/2 performance improvements in .NET 7...
Improving performance of read only selects in entity framework by turning off tracking with AsNoTracking method
We had a new contractor start the other day in work and he brought to my attention the ability to … Continue reading Improving performance of read only selects in...
Amazing performance improvement in .NET 6 when creating one SortedDictionary from another
The performance improvements when cloning one SortedDictionary from another in .NET 6 compared to .NET 5 are amazing. I’m not … Continue reading Amazing performance improvement in .NET 6 when...
Performance Improvements when Microsoft upgraded their Exchange Online POP3 windows service to .NET Core 3.1 from .NET Framework
Microsoft saw awesome improvements across several metrics including CPU time when they upgraded their Exchange Online POP3 windows service to … Continue reading Performance Improvements when Microsoft upgraded their Exchange...