NTDLS.FastMemoryCache
1.4.2
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package NTDLS.FastMemoryCache --version 1.4.2
NuGet\Install-Package NTDLS.FastMemoryCache -Version 1.4.2
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.4.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add NTDLS.FastMemoryCache --version 1.4.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: NTDLS.FastMemoryCache, 1.4.2"
#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.4.2 // Install NTDLS.FastMemoryCache as a Cake Tool #tool nuget:?package=NTDLS.FastMemoryCache&version=1.4.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
NTDLS.FastMemoryCache
Provides fast and easy to use thread-safe partitioned memory cache for C# that helps manage the maximum size and track performance.
Be sure to check out the NuGet pacakge: https://www.nuget.org/packages/NTDLS.FastMemoryCache/
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
Product | Versions 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 was computed. 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.
-
net6.0
- NTDLS.Semaphore (>= 1.5.0)
-
net7.0
- NTDLS.Semaphore (>= 1.5.0)
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.7.9 | 77 | 10/22/2024 |
1.7.8 | 92 | 10/13/2024 |
1.7.7 | 76 | 10/13/2024 |
1.7.6 | 86 | 10/13/2024 |
1.7.5 | 130 | 8/25/2024 |
1.7.4 | 122 | 8/24/2024 |
1.7.3 | 123 | 8/24/2024 |
1.7.2 | 113 | 8/24/2024 |
1.7.1 | 128 | 8/13/2024 |
1.7.0 | 67 | 8/3/2024 |
1.6.4 | 117 | 8/1/2024 |
1.6.3 | 70 | 8/1/2024 |
1.6.2 | 78 | 8/1/2024 |
1.6.1 | 77 | 8/1/2024 |
1.6.0 | 71 | 8/1/2024 |
1.5.4 | 75 | 8/1/2024 |
1.5.3 | 65 | 7/31/2024 |
1.5.2 | 109 | 6/20/2024 |
1.5.1 | 144 | 1/22/2024 |
1.5.0 | 183 | 12/7/2023 |
1.4.4 | 159 | 11/15/2023 |
1.4.3 | 148 | 11/10/2023 |
1.4.2 | 143 | 11/3/2023 |
1.4.1 | 149 | 10/17/2023 |
1.4.0 | 165 | 10/12/2023 |
1.3.0 | 159 | 10/11/2023 |
Made scavenge and max size optional.