Rystem.RepositoryFramework.Cache 4.1.24

There is a newer version of this package available.
See the version list below for details.
dotnet add package Rystem.RepositoryFramework.Cache --version 4.1.24                
NuGet\Install-Package Rystem.RepositoryFramework.Cache -Version 4.1.24                
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="Rystem.RepositoryFramework.Cache" Version="4.1.24" />                
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Rystem.RepositoryFramework.Cache --version 4.1.24                
#r "nuget: Rystem.RepositoryFramework.Cache, 4.1.24"                
#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 Rystem.RepositoryFramework.Cache as a Cake Addin
#addin nuget:?package=Rystem.RepositoryFramework.Cache&version=4.1.24

// Install Rystem.RepositoryFramework.Cache as a Cake Tool
#tool nuget:?package=Rystem.RepositoryFramework.Cache&version=4.1.24                

What is Rystem?

Cache

Examples

You can add a repository (with default blob integration for instance) and after attack an in memory cache for all methods. The RefreshTime is a property that adds an Expiration date to the cached value, in the example below you can see that after 20 seconds the in memory cache requests again to the repository pattern a new value for each key. The Methods is a flag that allows to setup what operations have to be cached.

Query → query will be cached with this key

var keyAsString = $"{nameof(RepositoryMethods.Query)}_{typeof(T).Name}_{filter.ToKey()}";

Operation → operation will be cached with this key

var keyAsString = $"{nameof(RepositoryMethods.Operation)}_{operation.Name}_{typeof(T).Name}_{filter.ToKey()}";

Get → query will be cached with this key

var keyAsString = $"{nameof(RepositoryMethods.Get)}_{typeof(T).Name}_{key.AsString()}";

Exist → query will be cached with this key

var keyAsString = $"{nameof(RepositoryMethod.Exist)}_{typeof(T).Name}_{key.AsString()}";

Now you can understand the special behavior for commands. If you set Insert and/or Update and/or Delete, during any command if you allowed it for each command automatically the framework will update the cache value, with updated or inserted value or removing the deleted value. The code below allows everything

x.Methods = RepositoryMethod.All

In the example below you're setting up the following behavior: setting up a cache only for Get operation, and update the Get cache when exists a new Insert or an Update, or a removal when Delete operation were perfomed.

x.Methods = RepositoryMethod.Get | RepositoryMethod.Insert | RepositoryMethod.Update | RepositoryMethod.Delete

Setup in DI

services
    .AddRepository<Plant, int>(settings =>
    {
        settings
            .WithInMemory();
        settings
            .WithInMemoryCache(x =>
            {
                x.ExpiringTime = TimeSpan.FromSeconds(1);
                x.Methods = RepositoryMethods.All;
            });
    });

Usage

You always will find the same interface. For instance

IRepository<Plant, int> repository

or if you added a query pattern or command pattern

IQuery<Plant, int> query 
ICommand<Plant, int> command

Distributed Cache

Based on this link you may use the standard interface IDistributedCache instead of create a custom IDistributedCache<T, TKey, TState>. For instance you may choose between three libraries: Distributed SQL Server cache, Distributed Redis cache, Distributed NCache cache. You need to add the cache

builder.Services.AddStackExchangeRedisCache(options =>
 {
     options.Configuration = builder.Configuration.GetConnectionString("MyRedisConStr");
     options.InstanceName = "SampleInstance";
 });

then you add the IDistributedCache implementation to your repository patterns or CQRS.

builder.Services.
    AddRepository<User, string>(settings => {
        settings
            .WithInMemory()
            .WithDistributedCache();
    });

and as always you will use the standard interface that is automatically integrated in the repository flow.

IRepository<User, string> repository;

The same is valid for ICommand and IQuery.

Product Compatible and additional computed target framework versions.
.NET 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.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Rystem.RepositoryFramework.Cache:

Package Downloads
Rystem.RepositoryFramework.Cache.Azure.Storage.Blob

Rystem.RepositoryFramework allows you to use correctly concepts like repository pattern, CQRS and DDD. You have interfaces for your domains, auto-generated api, auto-generated HttpClient to simplify connection "api to front-end", a functionality for auto-population in memory of your models, a functionality to simulate exceptions and waiting time from external sources to improve your implementation/business test and load test.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
9.0.0 70,360 11/16/2024
9.0.0-rc.1 76 10/18/2024
6.2.0 219,036 10/9/2024
6.1.1 101 10/9/2024
6.1.0 47,850 9/29/2024
6.0.24 116 9/11/2024
6.0.23 108 7/18/2024
6.0.21 124 6/18/2024
6.0.20 122 6/16/2024
6.0.19 116 6/14/2024
6.0.18 110 6/14/2024
6.0.17 108 6/14/2024
6.0.16 105 6/10/2024
6.0.15 124 6/9/2024
6.0.14 124 5/24/2024
6.0.13 123 5/23/2024
6.0.12 113 5/23/2024
6.0.11 132 5/20/2024
6.0.9 139 5/20/2024
6.0.7 122 5/18/2024
6.0.6 113 5/10/2024
6.0.5 125 5/10/2024
6.0.4 161 4/3/2024
6.0.3 1,342 3/25/2024
6.0.2 188 3/11/2024
6.0.0 1,007 11/21/2023
6.0.0-rc.6 110 10/25/2023
6.0.0-rc.5 80 10/25/2023
6.0.0-rc.4 73 10/23/2023
6.0.0-rc.3 69 10/19/2023
6.0.0-rc.2 79 10/18/2023
6.0.0-rc.1 82 10/16/2023
5.0.20 520 9/25/2023
5.0.19 514 9/10/2023
5.0.18 497 9/6/2023
5.0.17 477 9/6/2023
5.0.16 554 9/5/2023
5.0.15 500 9/5/2023
5.0.14 496 9/5/2023
5.0.13 491 9/1/2023
5.0.12 464 8/31/2023
5.0.11 493 8/30/2023
5.0.10 520 8/29/2023
5.0.9 500 8/24/2023
5.0.8 509 8/24/2023
5.0.7 515 8/23/2023
5.0.6 545 8/21/2023
5.0.5 525 8/21/2023
5.0.4 554 8/16/2023
5.0.3 617 8/2/2023
5.0.2 573 8/2/2023
5.0.1 599 8/1/2023
5.0.0 601 7/31/2023
4.1.26 628 7/20/2023
4.1.25 594 7/16/2023
4.1.24 707 6/13/2023
4.1.23 615 6/13/2023
4.1.22 1,015 5/30/2023
4.1.21 608 5/20/2023
4.1.20 315,637 4/19/2023
4.1.19 95,557 3/20/2023
4.1.18 717 3/20/2023
4.1.17 692 3/16/2023
4.1.16 697 3/16/2023
4.1.15 691 3/15/2023
4.1.14 1,779 3/9/2023
4.1.13 718 3/7/2023
4.1.12 868 2/10/2023
4.1.11 747 1/26/2023
4.1.10 762 1/22/2023
4.1.9 734 1/20/2023
4.1.8 747 1/18/2023
4.1.7 735 1/18/2023
4.1.6 749 1/17/2023
4.1.1 782 1/4/2023
4.1.0 782 1/1/2023
3.1.5 762 12/21/2022
3.1.3 769 12/12/2022
3.1.2 752 12/7/2022
3.1.1 766 12/7/2022
3.1.0 824 12/2/2022
3.0.29 758 12/1/2022
3.0.28 781 12/1/2022
3.0.27 822 11/23/2022
3.0.25 886 11/23/2022
3.0.24 887 11/18/2022
3.0.23 880 11/18/2022
3.0.22 882 11/15/2022
3.0.21 874 11/14/2022
3.0.20 912 11/13/2022
3.0.19 1,016 11/2/2022
3.0.18 885 11/2/2022
3.0.17 939 10/29/2022
3.0.16 940 10/29/2022
3.0.15 927 10/29/2022
3.0.14 1,069 10/24/2022
3.0.13 949 10/24/2022
3.0.12 939 10/17/2022
3.0.11 985 10/10/2022
3.0.10 984 10/6/2022
3.0.9 974 10/6/2022
3.0.8 967 10/6/2022
3.0.7 905 10/6/2022
3.0.6 975 10/5/2022
3.0.5 852 10/5/2022
3.0.4 988 10/5/2022
3.0.3 966 10/3/2022
3.0.2 957 9/30/2022
3.0.1 973 9/30/2022
2.0.17 858 9/29/2022
2.0.16 999 9/27/2022
2.0.15 1,048 9/27/2022
2.0.14 1,036 9/26/2022
2.0.13 996 9/26/2022
2.0.12 993 9/26/2022
2.0.11 1,020 9/25/2022
2.0.10 1,067 9/25/2022
2.0.9 1,032 9/22/2022
2.0.8 987 9/22/2022
2.0.6 1,019 9/20/2022
2.0.5 1,151 9/20/2022
2.0.4 993 9/20/2022
2.0.2 1,018 9/20/2022
2.0.1 1,070 9/13/2022
2.0.0 985 8/19/2022
1.1.24 1,079 7/30/2022
1.1.23 1,051 7/29/2022
1.1.22 900 7/29/2022
1.1.21 1,014 7/29/2022
1.1.20 1,028 7/29/2022
1.1.19 1,032 7/27/2022
1.1.17 1,085 7/27/2022
1.1.16 1,006 7/26/2022
1.1.15 1,028 7/25/2022
1.1.14 1,025 7/25/2022
1.1.13 1,009 7/22/2022
1.1.12 1,045 7/19/2022
1.1.11 1,036 7/19/2022
1.1.10 998 7/19/2022
1.1.9 1,036 7/19/2022
1.1.8 1,066 7/18/2022
1.1.7 1,023 7/18/2022
1.1.6 1,025 7/18/2022
1.1.5 1,056 7/17/2022
1.1.4 907 7/17/2022
1.1.3 1,175 7/17/2022
1.1.2 1,026 7/17/2022
1.1.0 1,047 7/17/2022
1.0.2 1,008 7/15/2022
1.0.1 903 7/15/2022
1.0.0 1,049 7/8/2022
0.10.7 1,005 7/7/2022
0.10.2 1,038 7/2/2022
0.10.1 1,055 7/1/2022
0.10.0 933 7/1/2022
0.9.10 1,006 6/20/2022
0.9.9 1,011 6/11/2022
0.9.7 895 6/9/2022
0.9.6 920 6/9/2022