Rystem.RepositoryFramework.Cache.Azure.Storage.Blob 9.0.7

There is a newer version of this package available.
See the version list below for details.
dotnet add package Rystem.RepositoryFramework.Cache.Azure.Storage.Blob --version 9.0.7
                    
NuGet\Install-Package Rystem.RepositoryFramework.Cache.Azure.Storage.Blob -Version 9.0.7
                    
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.Azure.Storage.Blob" Version="9.0.7" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Rystem.RepositoryFramework.Cache.Azure.Storage.Blob" Version="9.0.7" />
                    
Directory.Packages.props
<PackageReference Include="Rystem.RepositoryFramework.Cache.Azure.Storage.Blob" />
                    
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.Azure.Storage.Blob --version 9.0.7
                    
#r "nuget: Rystem.RepositoryFramework.Cache.Azure.Storage.Blob, 9.0.7"
                    
#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.
#:package Rystem.RepositoryFramework.Cache.Azure.Storage.Blob@9.0.7
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Rystem.RepositoryFramework.Cache.Azure.Storage.Blob&version=9.0.7
                    
Install as a Cake Addin
#tool nuget:?package=Rystem.RepositoryFramework.Cache.Azure.Storage.Blob&version=9.0.7
                    
Install as a Cake Tool

What is Rystem?

Cache example

.AddRepository<User, string>(repositoryBuilder =>
{
    repositoryBuilder
    .WithBlobStorage(storageBuilder =>
    {
        storageBuilder.Settings.ConnectionString = builder.Configuration["ConnectionString:Storage"];
    });
    repositoryBuilder
    .WithInMemoryCache(x =>
    {
        x.ExpiringTime = TimeSpan.FromSeconds(60);
        x.Methods = RepositoryMethods.Get | RepositoryMethods.Insert | RepositoryMethods.Update | RepositoryMethods.Delete;
    })
    .WithBlobStorageCache(
        x =>
        {
            x.Settings.ConnectionString = builder.Configuration["ConnectionString:Storage"];
        }
        , x =>
        {
            x.ExpiringTime = TimeSpan.FromSeconds(120);
            x.Methods = RepositoryMethods.All;
        });
});

Usage

You always will find the same interface. For instance

IRepository<User, string> repository

or if you added a query pattern or command pattern

IQuery<User, string> query 
ICommand<User, string> command
Product Compatible and additional computed target framework versions.
.NET net9.0 is compatible.  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

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
9.1.3 137 9/2/2025
9.1.2 519,118 5/29/2025
9.1.1 97,725 5/2/2025
9.0.32 186,621 4/15/2025
9.0.31 5,713 4/2/2025
9.0.30 88,717 3/26/2025
9.0.29 8,936 3/18/2025
9.0.28 175 3/17/2025
9.0.27 171 3/16/2025
9.0.26 180 3/13/2025
9.0.25 52,042 3/9/2025
9.0.21 236 3/6/2025
9.0.20 19,510 3/6/2025
9.0.19 234 3/6/2025
9.0.18 246 3/4/2025
9.0.17 134 3/1/2025
9.0.16 135 3/1/2025
9.0.15 75,472 2/22/2025
9.0.14 22,505 2/18/2025
9.0.13 141 2/9/2025
9.0.12 217,680 1/13/2025
9.0.11 23,996 1/9/2025
9.0.10 112 1/9/2025
9.0.9 3,994 1/7/2025
9.0.8 12,481 1/6/2025
9.0.7 135 1/6/2025
9.0.4 92,253 12/23/2024
9.0.3 139 12/22/2024
9.0.2 10,682 12/21/2024
9.0.1 1,177 12/21/2024
9.0.0 172,966 11/16/2024
9.0.0-rc.1 99 10/18/2024
6.2.0 219,049 10/10/2024
6.1.1 142 10/9/2024
6.1.0 47,892 9/29/2024
6.0.24 162 9/11/2024
6.0.23 144 7/18/2024
6.0.21 152 6/18/2024
6.0.20 160 6/16/2024
6.0.19 148 6/14/2024
6.0.18 149 6/14/2024
6.0.17 154 6/14/2024
6.0.16 142 6/10/2024
6.0.15 150 6/9/2024
6.0.14 160 5/24/2024
6.0.13 154 5/23/2024
6.0.12 143 5/23/2024
6.0.11 162 5/20/2024
6.0.9 160 5/20/2024
6.0.7 143 5/18/2024
6.0.6 153 5/10/2024
6.0.5 160 5/10/2024
6.0.4 169 4/3/2024
6.0.3 155 3/25/2024
6.0.0 266 11/21/2023
6.0.0-rc.6 128 10/25/2023
6.0.0-rc.5 95 10/25/2023
6.0.0-rc.4 93 10/23/2023
6.0.0-rc.3 95 10/19/2023
6.0.0-rc.2 97 10/18/2023
6.0.0-rc.1 100 10/16/2023
5.0.20 178 9/25/2023
5.0.19 194 9/10/2023
5.0.18 194 9/6/2023
5.0.17 187 9/6/2023
5.0.16 189 9/5/2023
5.0.15 182 9/5/2023
5.0.14 182 9/5/2023
5.0.13 177 9/1/2023
5.0.12 191 8/31/2023
5.0.11 171 8/30/2023
5.0.10 206 8/29/2023
5.0.9 229 8/24/2023
5.0.8 192 8/24/2023
5.0.7 194 8/23/2023
5.0.6 209 8/21/2023
5.0.5 200 8/21/2023
5.0.4 214 8/16/2023
5.0.3 247 8/2/2023
5.0.2 223 8/2/2023
5.0.1 213 8/1/2023
5.0.0 196 7/31/2023
4.1.26 248 7/20/2023
4.1.25 235 7/16/2023
4.1.24 298 6/13/2023
4.1.23 217 6/13/2023
4.1.22 222 5/30/2023
4.1.21 216 5/20/2023
4.1.20 315,333 4/19/2023
4.1.19 94,963 3/20/2023
4.1.18 273 3/20/2023
4.1.17 275 3/17/2023
4.1.16 276 3/16/2023
4.1.15 269 3/15/2023
4.1.14 851 3/9/2023
4.1.13 291 3/7/2023
4.1.12 414 2/10/2023
4.1.11 368 1/26/2023
4.1.10 355 1/22/2023
4.1.9 353 1/20/2023
4.1.8 361 1/18/2023
4.1.7 364 1/18/2023
4.1.6 353 1/17/2023
4.1.1 377 1/4/2023
4.1.0 371 1/1/2023
3.1.5 367 12/21/2022
3.1.3 373 12/12/2022
3.1.2 384 12/7/2022
3.1.1 363 12/7/2022
3.1.0 406 12/2/2022
3.0.29 385 12/1/2022
3.0.28 397 11/23/2022
3.0.26 394 11/23/2022
3.0.25 393 11/18/2022
3.0.24 395 11/18/2022
3.0.23 397 11/15/2022
3.0.22 410 11/14/2022
3.0.21 426 11/13/2022
3.0.20 425 11/2/2022
3.0.19 420 11/2/2022
3.0.18 444 10/29/2022
3.0.17 443 10/29/2022
3.0.16 432 10/29/2022
3.0.15 422 10/29/2022
3.0.14 444 10/24/2022
3.0.13 450 10/24/2022
3.0.12 464 10/17/2022
3.0.11 504 10/10/2022
3.0.10 458 10/6/2022
3.0.9 457 10/6/2022
3.0.8 463 10/6/2022
3.0.7 466 10/6/2022
3.0.6 468 10/5/2022
3.0.4 482 10/5/2022
3.0.3 472 10/3/2022
3.0.2 475 9/30/2022
3.0.1 491 9/30/2022
2.0.16 522 9/27/2022
2.0.15 518 9/27/2022
2.0.14 534 9/26/2022
2.0.13 519 9/26/2022
2.0.12 525 9/26/2022
2.0.11 514 9/25/2022
2.0.10 537 9/25/2022
2.0.9 535 9/23/2022
2.0.8 506 9/22/2022
2.0.6 493 9/20/2022
2.0.5 497 9/20/2022
2.0.4 494 9/20/2022
2.0.3 500 9/20/2022
2.0.2 519 9/20/2022
2.0.1 569 9/13/2022
2.0.0 521 8/19/2022
1.1.23 565 7/30/2022
1.1.22 537 7/29/2022
1.1.21 535 7/29/2022
1.1.20 521 7/29/2022
1.1.19 521 7/27/2022
1.1.17 538 7/27/2022
1.1.16 538 7/26/2022
1.1.15 517 7/25/2022
1.1.14 516 7/25/2022
1.1.13 532 7/22/2022
1.1.12 536 7/19/2022
1.1.11 540 7/19/2022
1.1.10 529 7/19/2022
1.1.9 547 7/19/2022
1.1.8 551 7/18/2022
1.1.7 529 7/18/2022
1.1.6 515 7/18/2022
1.1.5 521 7/18/2022
1.1.4 514 7/17/2022
1.1.3 549 7/17/2022
1.1.2 534 7/17/2022
1.1.0 541 7/17/2022
1.0.2 527 7/15/2022
1.0.0 539 7/8/2022
0.10.7 536 7/8/2022
0.10.2 550 7/2/2022
0.10.1 542 7/1/2022
0.9.10 571 6/20/2022
0.9.9 513 6/11/2022