TanvirArjel.Extensions.Microsoft.Caching
1.1.0
dotnet add package TanvirArjel.Extensions.Microsoft.Caching --version 1.1.0
NuGet\Install-Package TanvirArjel.Extensions.Microsoft.Caching -Version 1.1.0
<PackageReference Include="TanvirArjel.Extensions.Microsoft.Caching" Version="1.1.0" />
paket add TanvirArjel.Extensions.Microsoft.Caching --version 1.1.0
#r "nuget: TanvirArjel.Extensions.Microsoft.Caching, 1.1.0"
// Install TanvirArjel.Extensions.Microsoft.Caching as a Cake Addin
#addin nuget:?package=TanvirArjel.Extensions.Microsoft.Caching&version=1.1.0
// Install TanvirArjel.Extensions.Microsoft.Caching as a Cake Tool
#tool nuget:?package=TanvirArjel.Extensions.Microsoft.Caching&version=1.1.0
TanvirArjel.Extensions.Microsoft.Caching
This library extended the functionality of IDistributedCache
interface to make the caching mechanism more easier in .NET 5.0 and .NET Core.
How do I get started
First install the lastest version of TanvirArjel.Extensions.Microsoft.Caching
nuget package into your project as follows:
Install-Package TanvirArjel.Extensions.Microsoft.Caching
Basic usage
using TanvirArjel.Extensions.Microsoft.Caching
// To set
Employee employee = new Employee
{
Id = 1,
Name = "Tanvir"
};
string cacheKey = "Employee1";
await _distributedCache.SetAsync<Employee>(cacheKey, employee);
// To retrive
Employee = await _distributedCache.GetAsync<Employee>(cacheKey);
Available methods
GetAsync<T>()
SetAsync<T>()
- 3 overloadsAddToListAsync<T>()
- 3 overloadsAddToListAsync<T, TKey>()
- 3 overloadsUpdateInListAsync<T>()
- 3 overloadsUpdateInListAsync<T, TKey>()
- 3 overloadsRemoveFromListAsync()
- 3 overloads
Bug(🐞) Report
Dont forget to submit an issue if you face. we will try to resolve as soon as possible.
Give a star (⭐)
If you find this library useful to you, please don't forget to encouraging me to do such more stuffs by giving a star (⭐) to this repository. Thank you.
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows |
.NET Core | netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
.NET Standard | netstandard2.0 netstandard2.1 |
.NET Framework | net461 net462 net463 net47 net471 net472 net48 net481 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen | tizen40 tizen60 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
-
.NETStandard 2.0
- Microsoft.Extensions.Caching.Abstractions (>= 7.0.0)
- System.Text.Json (>= 7.0.0)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on TanvirArjel.Extensions.Microsoft.Caching:
Repository | Stars |
---|---|
TanvirArjel/CleanArchitecture
This repository contains the implementation of domain-driven design and clear architecture in ASP.NET Core.
|
1. Serialization with private constructor support has been added.