Day 22 of 30-Day .NET Challenge: Use Array Pool
ArrayPool<T> , a mechanism to recycle temporary buffers and optimize performance by reducing garbage collection cycles.

Search for a command to run...
Articles tagged with #best-practices
ArrayPool<T> , a mechanism to recycle temporary buffers and optimize performance by reducing garbage collection cycles.

The article demonstrates the importance of using StringComparison options for efficient string comparison in .NET

Heap allocations aren’t entirely bad but when an object is allocated on a heap it contributes to the garbage collection cycles which in turn reduces o

It influences the Just-In-Time (JIT) compiler’s behaviour to enhance the execution speed of critical methods.

Challenges are hard when the database resides in a remote machine or experiencing heavy load. The in-memory caching acts as a better implementation to

To unlock the full potential of your .Net Application, it’s essential to familiarize yourself with the Lazy<T> class.
