KZDev.PerfUtils 2.0.1

Prefix Reserved
dotnet add package KZDev.PerfUtils --version 2.0.1
                    
NuGet\Install-Package KZDev.PerfUtils -Version 2.0.1
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="KZDev.PerfUtils" Version="2.0.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="KZDev.PerfUtils" Version="2.0.1" />
                    
Directory.Packages.props
<PackageReference Include="KZDev.PerfUtils" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add KZDev.PerfUtils --version 2.0.1
                    
#r "nuget: KZDev.PerfUtils, 2.0.1"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#addin nuget:?package=KZDev.PerfUtils&version=2.0.1
                    
Install KZDev.PerfUtils as a Cake Addin
#tool nuget:?package=KZDev.PerfUtils&version=2.0.1
                    
Install KZDev.PerfUtils as a Cake Tool

KZDev.PerfUtils

The KZDev.PerfUtils package provides the following high-performance utility classes:

  • MemoryStreamSlim: A high-performance, memory-efficient, and easy-to-use replacement for the MemoryStream class, offering significant performance benefits for large or frequently used streams.
  • StringBuilderCache: A thread-safe cache of StringBuilder instances to improve speed and reduce the overhead of memory allocations associated with the StringBuilder class.
  • InterlockedOps: A utility that extends the functionality of the Interlocked class in the .NET Class Library by providing additional atomic thread-safe operations.

Performance Highlights

This sampling of performance benchmarks clearly demonstrates the advantages of using the KZDev.PerfUtils package:

StringBuilderCache Performance Sample

MemoryStreamSlim Performance Sample

For more details, refer to the benchmark related pages in the documentation.

Features

MemoryStreamSlim

MemoryStreamSlim is a drop-in replacement for the MemoryStream class, offering the following benefits:

  • Improved Throughput: Outperforms the standard MemoryStream.
  • Reduced Memory Traffic: Significantly lowers memory traffic and garbage collection compared to the standard MemoryStream.
  • Eliminates LOH Fragmentation: Prevents Large Object Heap (LOH) fragmentation caused by frequent use and release of single-byte arrays.
  • API Compatibility: Provides the same API as MemoryStream, with minor differences in the constructor.
  • Optional Native Memory Storage: Allows the use of native memory for storage, further reducing GC pressure and increasing flexibility.
  • Outperforms Similar Libraries: Compared to other libraries like RecyclableMemoryStream, it is designed to be easier to use, more flexible, and incurs fewer memory allocations and garbage collections.

StringBuilderCache

StringBuilderCache is a static class that provides a thread-safe cache of StringBuilder instances, reducing allocations and deallocations in high-throughput scenarios. Key features include:

  • Acquire: Retrieve a StringBuilder instance from the cache.
  • Release: Return a StringBuilder instance to the cache.
  • GetStringAndRelease: Retrieve the string from a StringBuilder instance and return it to the cache.
  • GetScope: Use a using-scoped StringBuilder instance, which is automatically returned to the cache when the scope is exited.
  • Monitoring: Leverages the .NET runtime's Events feature for detailed cache management and monitoring.

InterlockedOps

InterlockedOps is a static class that provides additional thread-safe atomic operations for integer types, including:

  • Xor: Perform an exclusive OR operation.
  • ClearBits: Clear specific bits.
  • SetBits: Set specific bits.
  • ConditionAnd: Conditionally update bits using an AND operation.
  • ConditionOr: Conditionally update bits using an OR operation.
  • ConditionXor: Conditionally update bits using an XOR operation.
  • ConditionClearBits: Conditionally clear specific bits.
  • ConditionSetBits: Conditionally set specific bits.

Examples

MemoryStreamSlim Example

Below is an example of how to use the MemoryStreamSlim class. Other than instantiation using the Create method, the API is identical to the standard MemoryStream class. Note that it is always a best practice to dispose of the MemoryStreamSlim instance when it is no longer needed.

using KZDev.PerfUtils;

// Create a new MemoryStreamSlim instance
// For the best management of the memory buffers, it is very important to
// dispose of the MemoryStreamSlim instance when it is no longer needed.
using (MemoryStreamSlim stream = MemoryStreamSlim.Create())
{
        // Write some data to the stream
        stream.Write(new byte[] { 1, 2, 3, 4, 5 }, 0, 5);

        // Read the data back from the stream
        stream.Position = 0;
        byte[] buffer = new byte[5];
        stream.Read(buffer, 0, 5);
}

StringBuilderCache Example

Below is an example of how to use the StringBuilderCache class to acquire a StringBuilder instance, append strings to it, and then release it back to the cache. The GetStringAndRelease method is used to retrieve the string and release the StringBuilder instance back to the cache.

using KZDev.PerfUtils;

class Program
{
    static void Main()
    {
        StringBuilder stringBuilder = StringBuilderCache.Acquire();
        stringBuilder.Append("Hello, ");
        stringBuilder.Append("World!");
        Console.WriteLine(StringBuilderCache.GetStringAndRelease(stringBuilder));
    }
}

InterlockedOps Example

Below is an example of how to use the InterlockedOps class to perform an atomic XOR operation on an integer variable. The Xor method toggles a bit flag between 1 and 0 in a thread-safe manner and returns a boolean value indicating whether the bit flag was set to 1.

using KZDev.PerfUtils;

public class XorExample
{
    private int _flag;

    public bool ToggleFlag ()
    {
        int originalValue = InterlockedOps.Xor(ref _flag, 1);
        return originalValue == 0;
    }
}

Compare to RecyclableMemoryStream

The MemoryStreamSlim class is conceptually similar to the RecyclableMemoryStream class from Microsoft. However, the internal implementation of buffer management is quite different. Compared to RecyclableMemoryStream, the MemoryStreamSlim class is designed to:

  • Easier to use without requiring parameter tuning.
  • More flexible across a broad range of use cases.
  • Fewer memory allocations and garbage collections.
  • Consistent performance across workloads.
  • Security-first design with opt-out zeroing of unused memory.
  • Automatic memory trimming and release.
  • Supports .NET Metrics and Events for monitoring.
  • Optionally uses native memory to avoid GC pressure.

Performance comparisons are also available in the benchmarks documentation section.

Documentation

Comprehensive documentation for the package is available on the PerfUtils Documentation page.

Future Features

The roadmap for this package includes plans to add additional performance-focused utilities as time permits.

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
2.0.1 139 5/1/2025
2.0.0 155 4/23/2025
1.2.0 137 1/3/2025
1.1.0 119 10/25/2024
1.0.0 112 10/13/2024

.NET 9 Support, MemoryStreamSlim Int64 Capacity Support, Added compression stream helper classes (version 2.0.0). Bug fix for potential internal race condition (version 2.0.1).