Rystem.RepositoryFramework.Cache 6.0.0-rc.1

This is a prerelease version of Rystem.RepositoryFramework.Cache.
There is a newer version of this package available.
See the version list below for details.
dotnet add package Rystem.RepositoryFramework.Cache --version 6.0.0-rc.1
                    
NuGet\Install-Package Rystem.RepositoryFramework.Cache -Version 6.0.0-rc.1
                    
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="6.0.0-rc.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Rystem.RepositoryFramework.Cache" Version="6.0.0-rc.1" />
                    
Directory.Packages.props
<PackageReference Include="Rystem.RepositoryFramework.Cache" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Rystem.RepositoryFramework.Cache --version 6.0.0-rc.1
                    
#r "nuget: Rystem.RepositoryFramework.Cache, 6.0.0-rc.1"
                    
#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.
#addin nuget:?package=Rystem.RepositoryFramework.Cache&version=6.0.0-rc.1&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=Rystem.RepositoryFramework.Cache&version=6.0.0-rc.1&prerelease
                    
Install as a Cake Tool

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}_{FactoryName}_{filter.ToKey()}";

Operation → operation will be cached with this key

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

Get → query will be cached with this key

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

Exist → query will be cached with this key

var keyAsString = $"{nameof(RepositoryMethod.Exist)}_{typeof(T).Name}_{FactoryName}_{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.

.AddRepository<Country, CountryKey>(builder =>
{
    builder
        .WithInMemory(inMemoryBuilder =>
        {
            inMemoryBuilder
                .PopulateWithRandomData(NumberOfEntries, NumberOfEntries);
        });
    builder
        .WithDistributedCache(distributedCacheBuilder =>
        {
            distributedCacheBuilder.ExpiringTime = TimeSpan.FromSeconds(10);
        });
});

or a mix of them

.AddRepository<Country, CountryKey>(builder =>
{
    builder
        .WithInMemory(inMemoryBuilder =>
        {
            inMemoryBuilder
                .PopulateWithRandomData(NumberOfEntries, NumberOfEntries);
        });
    builder
        .WithInMemoryCache(inMemoryCacheBuilder =>
        {
            inMemoryCacheBuilder.ExpiringTime = TimeSpan.FromSeconds(10);
        })
        .WithDistributedCache(distributedCacheBuilder =>
        {
            distributedCacheBuilder.ExpiringTime = TimeSpan.FromSeconds(10);
        });
});

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 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.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.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.1.2 208,748 5/29/2025
9.1.1 97,812 5/2/2025
9.0.32 186,624 4/15/2025
9.0.31 5,703 4/2/2025
9.0.30 88,706 3/26/2025
9.0.29 8,924 3/18/2025
9.0.28 160 3/17/2025
9.0.27 160 3/16/2025
9.0.26 169 3/13/2025
9.0.25 52,034 3/9/2025
9.0.21 643 3/6/2025
9.0.20 19,500 3/6/2025
9.0.19 226 3/6/2025
9.0.18 231 3/4/2025
9.0.17 116 3/1/2025
9.0.16 118 3/1/2025
9.0.15 75,476 2/22/2025
9.0.14 22,495 2/18/2025
9.0.13 133 2/9/2025
9.0.12 217,908 1/13/2025
9.0.11 23,954 1/9/2025
9.0.10 68 1/9/2025
9.0.9 3,974 1/7/2025
9.0.8 12,469 1/6/2025
9.0.7 111 1/6/2025
9.0.4 92,251 12/23/2024
9.0.3 152 12/22/2024
9.0.2 10,684 12/21/2024
9.0.1 1,159 12/21/2024
9.0.0 172,932 11/16/2024
9.0.0-rc.1 93 10/18/2024
6.2.0 219,071 10/9/2024
6.1.1 134 10/9/2024
6.1.0 47,893 9/29/2024
6.0.24 151 9/11/2024
6.0.23 141 7/18/2024
6.0.21 158 6/18/2024
6.0.20 153 6/16/2024
6.0.19 148 6/14/2024
6.0.18 142 6/14/2024
6.0.17 140 6/14/2024
6.0.16 133 6/10/2024
6.0.15 153 6/9/2024
6.0.14 155 5/24/2024
6.0.13 153 5/23/2024
6.0.12 140 5/23/2024
6.0.11 165 5/20/2024
6.0.9 169 5/20/2024
6.0.7 150 5/18/2024
6.0.6 147 5/10/2024
6.0.5 164 5/10/2024
6.0.4 202 4/3/2024
6.0.3 1,587 3/25/2024
6.0.2 215 3/11/2024
6.0.0 1,021 11/21/2023
6.0.0-rc.6 123 10/25/2023
6.0.0-rc.5 95 10/25/2023
6.0.0-rc.4 87 10/23/2023
6.0.0-rc.3 87 10/19/2023
6.0.0-rc.2 94 10/18/2023
6.0.0-rc.1 97 10/16/2023
5.0.20 538 9/25/2023
5.0.19 534 9/10/2023
5.0.18 519 9/6/2023
5.0.17 496 9/6/2023
5.0.16 574 9/5/2023
5.0.15 521 9/5/2023
5.0.14 518 9/5/2023
5.0.13 511 9/1/2023
5.0.12 483 8/31/2023
5.0.11 512 8/30/2023
5.0.10 551 8/29/2023
5.0.9 521 8/24/2023
5.0.8 530 8/24/2023
5.0.7 551 8/23/2023
5.0.6 591 8/21/2023
5.0.5 546 8/21/2023
5.0.4 574 8/16/2023
5.0.3 640 8/2/2023
5.0.2 593 8/2/2023
5.0.1 621 8/1/2023
5.0.0 624 7/31/2023
4.1.26 652 7/20/2023
4.1.25 616 7/16/2023
4.1.24 736 6/13/2023
4.1.23 645 6/13/2023
4.1.22 1,058 5/30/2023
4.1.21 639 5/20/2023
4.1.20 315,670 4/19/2023
4.1.19 95,587 3/20/2023
4.1.18 758 3/20/2023
4.1.17 720 3/16/2023
4.1.16 729 3/16/2023
4.1.15 721 3/15/2023
4.1.14 1,811 3/9/2023
4.1.13 748 3/7/2023
4.1.12 901 2/10/2023
4.1.11 782 1/26/2023
4.1.10 799 1/22/2023
4.1.9 771 1/20/2023
4.1.8 781 1/18/2023
4.1.7 774 1/18/2023
4.1.6 786 1/17/2023
4.1.1 817 1/4/2023
4.1.0 816 1/1/2023
3.1.5 795 12/21/2022
3.1.3 802 12/12/2022
3.1.2 786 12/7/2022
3.1.1 800 12/7/2022
3.1.0 861 12/2/2022
3.0.29 796 12/1/2022
3.0.28 816 12/1/2022
3.0.27 859 11/23/2022
3.0.25 924 11/23/2022
3.0.24 926 11/18/2022
3.0.23 916 11/18/2022
3.0.22 922 11/15/2022
3.0.21 910 11/14/2022
3.0.20 949 11/13/2022
3.0.19 1,054 11/2/2022
3.0.18 921 11/2/2022
3.0.17 976 10/29/2022
3.0.16 976 10/29/2022
3.0.15 964 10/29/2022
3.0.14 1,106 10/24/2022
3.0.13 985 10/24/2022
3.0.12 981 10/17/2022
3.0.11 1,023 10/10/2022
3.0.10 1,021 10/6/2022
3.0.9 1,012 10/6/2022
3.0.8 1,016 10/6/2022
3.0.7 951 10/6/2022
3.0.6 1,014 10/5/2022
3.0.5 890 10/5/2022
3.0.4 1,028 10/5/2022
3.0.3 1,005 10/3/2022
3.0.2 1,002 9/30/2022
3.0.1 1,012 9/30/2022
2.0.17 905 9/29/2022
2.0.16 1,047 9/27/2022
2.0.15 1,084 9/27/2022
2.0.14 1,073 9/26/2022
2.0.13 1,033 9/26/2022
2.0.12 1,029 9/26/2022
2.0.11 1,057 9/25/2022
2.0.10 1,104 9/25/2022
2.0.9 1,069 9/22/2022
2.0.8 1,024 9/22/2022
2.0.6 1,056 9/20/2022
2.0.5 1,197 9/20/2022
2.0.4 1,029 9/20/2022
2.0.2 1,055 9/20/2022
2.0.1 1,109 9/13/2022
2.0.0 1,021 8/19/2022
1.1.24 1,121 7/30/2022
1.1.23 1,091 7/29/2022
1.1.22 940 7/29/2022
1.1.21 1,053 7/29/2022
1.1.20 1,078 7/29/2022
1.1.19 1,075 7/27/2022
1.1.17 1,125 7/27/2022
1.1.16 1,047 7/26/2022
1.1.15 1,069 7/25/2022
1.1.14 1,065 7/25/2022
1.1.13 1,051 7/22/2022
1.1.12 1,086 7/19/2022
1.1.11 1,076 7/19/2022
1.1.10 1,039 7/19/2022
1.1.9 1,079 7/19/2022
1.1.8 1,108 7/18/2022
1.1.7 1,063 7/18/2022
1.1.6 1,066 7/18/2022
1.1.5 1,097 7/17/2022
1.1.4 949 7/17/2022
1.1.3 1,215 7/17/2022
1.1.2 1,067 7/17/2022
1.1.0 1,094 7/17/2022
1.0.2 1,048 7/15/2022
1.0.1 944 7/15/2022
1.0.0 1,088 7/8/2022
0.10.7 1,055 7/7/2022
0.10.2 1,078 7/2/2022
0.10.1 1,097 7/1/2022
0.10.0 977 7/1/2022
0.9.10 1,047 6/20/2022
0.9.9 1,055 6/11/2022
0.9.7 938 6/9/2022
0.9.6 962 6/9/2022