MemoryCaching 1.0.0
dotnet add package MemoryCaching --version 1.0.0
NuGet\Install-Package MemoryCaching -Version 1.0.0
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="MemoryCaching" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add MemoryCaching --version 1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: MemoryCaching, 1.0.0"
#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 MemoryCaching as a Cake Addin #addin nuget:?package=MemoryCaching&version=1.0.0 // Install MemoryCaching as a Cake Tool #tool nuget:?package=MemoryCaching&version=1.0.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Memory Caching
Description
Provides easy access to a static set of functions to retrieve, add, or delete values from the System.Runtime.Caching.MemoryCache.
Usage Examples
Add value to memory cache.
MemoryCacher.Add(cacheValueName, value, DateTimeOffset.Now.AddSeconds(cacheSeconds));
Get value from the cache if it exists.
string value = string.Empty;
string cacheValueName = "TEST";
if (MemoryCacher.GetValue(cacheValueName) != null)
{
value = (string)MemoryCacher.GetValue(cacheValueName);
}
Delete value from the cache if it exists
MemoryCacher.Delete("TEST");
Get value from cache if it exists; otherwise, add a value to the memory cache.
string cacheValueName = "TEST";
string value = string.Empty;
int cacheSeconds = 60;
if (MemoryCacher.GetValue(cacheValueName) != null)
{
value = (string)MemoryCacher.GetValue(cacheValueName);
}
else {
value = "Just Testing";
if (cacheSeconds > 0)
MemoryCacher.Add(cacheValueName, value, DateTimeOffset.Now.AddSeconds(cacheSeconds));
}
if (string.IsNullOrEmpty(value))
throw new Exception("No value is set!");
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | 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.
-
net8.0
- System.Runtime.Caching (>= 8.0.1)
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.0.0 | 63 | 12/16/2024 |