Pdsr.Cache.InMemory 3.5.0

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

// Install Pdsr.Cache.InMemory as a Cake Tool
#tool nuget:?package=Pdsr.Cache.InMemory&version=3.5.0

Pdsr Cache Helper

NuGet version (Pdsr.Cache)

A helper library (wrapper) for caching with Redis, MSSQL, ...

What is it?

I have started building several libraries to keep up with the DRY principle, one of them was this lib, helping me to use cache systems.

The first goal this library is keeping Cache requests in one go so I don't have to check if the cache exists, if the cache time has passed, etc.

Getting Started

you need to install the package, add to DI and then use it in services.

  1. install the package dotnet add package Pdsr.Cache.Redis for Redis.
  2. Add the RedisCacheManager to DI through the extension AddRedisCacheManager(c => c.Endpoints = "my-redis:6379")
  3. Instantiate the ICacheManager in your controller or service.
  4. Use any of the Get,Set, ... methods. Async or Sync.
public class MyClass
{
    private readonly ICacheManager _cache;
    public MyClass(ICacheManager cache) => _cache = cache;

    public async Task SomeMethod(CancellationToken cancellationToken = default)
    {
        var results = await _cache.GetAsync<SomeModel>(
            "some-key" , // cache key identifier
            async () => // Func<Task<T>> to produce something
            {
                var model = new SomeModel(); // produce something time consuming
                return model;
            },
            60, // cache time
            cancellationToken);

        return results;
    }
}

Contribute

Please refer to contribute. Some parts definitely needs help.

Documents

Under Creation.

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 netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 is compatible. 
.NET Framework net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  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
3.5.0 109 2/20/2024
3.3.1 134 8/26/2023
3.3.0 551 7/18/2023
3.2.1 230 2/20/2023
3.2.0 333 11/11/2022
3.1.8 417 9/13/2022
3.0.7 391 8/25/2022
3.0.6 410 6/21/2022
3.0.5 460 5/11/2022
3.0.4 435 4/18/2022
3.0.3 428 4/18/2022
3.0.2 435 4/18/2022
3.0.1.303 417 4/17/2022
3.0.1.301 416 4/17/2022