NTDLS.FastMemoryCache 1.5.1

dotnet add package NTDLS.FastMemoryCache --version 1.5.1
NuGet\Install-Package NTDLS.FastMemoryCache -Version 1.5.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="NTDLS.FastMemoryCache" Version="1.5.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add NTDLS.FastMemoryCache --version 1.5.1
#r "nuget: NTDLS.FastMemoryCache, 1.5.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.
// Install NTDLS.FastMemoryCache as a Cake Addin
#addin nuget:?package=NTDLS.FastMemoryCache&version=1.5.1

// Install NTDLS.FastMemoryCache as a Cake Tool
#tool nuget:?package=NTDLS.FastMemoryCache&version=1.5.1

NTDLS.FastMemoryCache

📦 Be sure to check out the NuGet pacakge: https://www.nuget.org/packages/NTDLS.FastMemoryCache

Provides fast and easy to use thread-safe partitioned memory cache for C# that helps manage the maximum size and track performance.

👀 This memory cache was developed to deal with caches containing large numbers of items. When working on a database server written in C# we found that we had significant contention around the cache. This project was the solution. It also allowed us to better manage the size of the cache and enforce max memory constraints. That said, if you are only caching a few dozen items - stick with IMemoryCache.

Quick and easy eample of a file cache:

Using the memory cache is easy, just initialize and upsert some values. You can also pass a configuration parameter to set max memory size, cache scavange rate and partition count.

readonly PartitionedMemoryCache _cache = new();

public string ReadFileFromDisk(string path)
{
    string cacheKey = path.ToLower();

    if (_cache.TryGet<string>(cacheKey, out var cachedObject))
    {
        return cachedObject;
    }

    string fileContents = File.ReadAllText(path);
    _cache.Upsert(cacheKey, fileContents, fileContents.Length * sizeof(char));
    return fileContents;
}

License

Apache-2.0

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 is compatible.  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. 
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
1.5.1 110 1/22/2024
1.5.0 158 12/7/2023
1.4.4 120 11/15/2023
1.4.3 108 11/10/2023
1.4.2 110 11/3/2023
1.4.1 120 10/17/2023
1.4.0 130 10/12/2023
1.3.0 126 10/11/2023
1.2.0 122 10/10/2023
1.1.5 125 10/10/2023

Nuget updates.