Anexia.Caching.GlobalCache 0.3.4

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

// Install Anexia.Caching.GlobalCache as a Cake Tool
#tool nuget:?package=Anexia.Caching.GlobalCache&version=0.3.4

Anexia Caching

Package with wrapper arround MemoryCache with specified functions to get/set, cache objects.

Installation and configuration

Install the package via NuGet: "Anexia.Caching.GlobalCache"

public class CacheApp : BaseCache<AppModelToCache>
{
	//for MemoryCache
	public CacheApp()
		: base(sizeLimit: null, serializer: UTF8JsonSerializer.Instance)
	{}
	
	//for RedisCache
	public CacheApp(RedisConfigModel config)
		: base(config, typeKey: nameof(AppModelToCache))
	{}
}

protected void Application_Start()
{
	IBaseCache<AppModelToCache> bsCache = new CacheApp();
	bsCache.Insert(
		"key as object",
		"value as object",
		DateTime.UtcNow.AddMinutes(15));
}

Usage

It's a threadsafe implementation for Caching with .Net Standard 2.1. Used in every possible application needed.

If you want to use RedisCache, test the Text.Json serializer with your model that you want to cache.
If Text.Json delivers error messages you have to create your own serilizer with the IBaseSerializer.

Code Coverage and Readme Process

If you want to modify Readme-File, always mod README_BASE.md. README.md will be overwritten after pull request to master-branch.

Testing

If you want to run the Redis cache tests, you have to have a Redis cache running on localhost

List of developers

Code Coverage

Code Coverage

Package Line Rate Branch Rate Health
Anexia.Caching.GlobalCache 25% 14%
Summary 25% (150 / 591) 14% (42 / 296)

Minimum allowed line rate is 20%

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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 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. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos 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
0.3.4 365 7/20/2023
0.3.3 125 7/20/2023
0.3.2 128 7/20/2023
0.3.1 139 7/14/2023
0.3.0 136 7/14/2023
0.2.12 11,334 5/13/2022
0.2.11 766 5/9/2022
0.2.10 408 5/5/2022
0.2.9 399 5/5/2022
0.2.8 3,458 2/15/2022
0.2.7 442 11/22/2021
0.2.6 1,690 9/30/2021
0.2.5 976 6/18/2021
0.2.4 2,261 2/18/2021
0.2.3 404 2/17/2021
0.2.2 614 2/4/2021
0.2.1 446 1/13/2021
0.1.0 1,826 5/12/2020