Rystem.RepositoryFramework.Cache.Azure.Storage.Blob 9.0.32

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.32
                    
NuGet\Install-Package Rystem.RepositoryFramework.Cache.Azure.Storage.Blob -Version 9.0.32
                    
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.32" />
                    
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.32" />
                    
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.32
                    
#r "nuget: Rystem.RepositoryFramework.Cache.Azure.Storage.Blob, 9.0.32"
                    
#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.Azure.Storage.Blob&version=9.0.32
                    
Install as a Cake Addin
#tool nuget:?package=Rystem.RepositoryFramework.Cache.Azure.Storage.Blob&version=9.0.32
                    
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.2 215,273 5/29/2025
9.1.1 97,706 5/2/2025
9.0.32 186,601 4/15/2025
9.0.31 5,691 4/2/2025
9.0.30 88,698 3/26/2025
9.0.29 8,917 3/18/2025
9.0.28 155 3/17/2025
9.0.27 149 3/16/2025
9.0.26 159 3/13/2025
9.0.25 52,019 3/9/2025
9.0.21 216 3/6/2025
9.0.20 19,489 3/6/2025
9.0.19 215 3/6/2025
9.0.18 227 3/4/2025
9.0.17 116 3/1/2025
9.0.16 116 3/1/2025
9.0.15 75,453 2/22/2025
9.0.14 22,485 2/18/2025
9.0.13 120 2/9/2025
9.0.12 217,661 1/13/2025
9.0.11 23,977 1/9/2025
9.0.10 94 1/9/2025
9.0.9 3,973 1/7/2025
9.0.8 12,462 1/6/2025
9.0.7 117 1/6/2025
9.0.4 92,235 12/23/2024
9.0.3 121 12/22/2024
9.0.2 10,664 12/21/2024
9.0.1 1,158 12/21/2024
9.0.0 172,947 11/16/2024
9.0.0-rc.1 91 10/18/2024
6.2.0 219,032 10/10/2024
6.1.1 125 10/9/2024
6.1.0 47,875 9/29/2024
6.0.24 142 9/11/2024
6.0.23 125 7/18/2024
6.0.21 134 6/18/2024
6.0.20 143 6/16/2024
6.0.19 128 6/14/2024
6.0.18 130 6/14/2024
6.0.17 136 6/14/2024
6.0.16 124 6/10/2024
6.0.15 132 6/9/2024
6.0.14 142 5/24/2024
6.0.13 137 5/23/2024
6.0.12 125 5/23/2024
6.0.11 142 5/20/2024
6.0.9 142 5/20/2024
6.0.7 125 5/18/2024
6.0.6 134 5/10/2024
6.0.5 141 5/10/2024
6.0.4 151 4/3/2024
6.0.3 136 3/25/2024
6.0.0 259 11/21/2023
6.0.0-rc.6 119 10/25/2023
6.0.0-rc.5 86 10/25/2023
6.0.0-rc.4 85 10/23/2023
6.0.0-rc.3 86 10/19/2023
6.0.0-rc.2 89 10/18/2023
6.0.0-rc.1 91 10/16/2023
5.0.20 169 9/25/2023
5.0.19 177 9/10/2023
5.0.18 176 9/6/2023
5.0.17 170 9/6/2023
5.0.16 171 9/5/2023
5.0.15 163 9/5/2023
5.0.14 163 9/5/2023
5.0.13 159 9/1/2023
5.0.12 173 8/31/2023
5.0.11 152 8/30/2023
5.0.10 186 8/29/2023
5.0.9 207 8/24/2023
5.0.8 173 8/24/2023
5.0.7 174 8/23/2023
5.0.6 189 8/21/2023
5.0.5 181 8/21/2023
5.0.4 194 8/16/2023
5.0.3 225 8/2/2023
5.0.2 202 8/2/2023
5.0.1 193 8/1/2023
5.0.0 175 7/31/2023
4.1.26 227 7/20/2023
4.1.25 215 7/16/2023
4.1.24 277 6/13/2023
4.1.23 196 6/13/2023
4.1.22 200 5/30/2023
4.1.21 194 5/20/2023
4.1.20 315,311 4/19/2023
4.1.19 94,940 3/20/2023
4.1.18 249 3/20/2023
4.1.17 253 3/17/2023
4.1.16 253 3/16/2023
4.1.15 247 3/15/2023
4.1.14 826 3/9/2023
4.1.13 267 3/7/2023
4.1.12 390 2/10/2023
4.1.11 344 1/26/2023
4.1.10 330 1/22/2023
4.1.9 329 1/20/2023
4.1.8 337 1/18/2023
4.1.7 341 1/18/2023
4.1.6 329 1/17/2023
4.1.1 352 1/4/2023
4.1.0 347 1/1/2023
3.1.5 344 12/21/2022
3.1.3 349 12/12/2022
3.1.2 360 12/7/2022
3.1.1 341 12/7/2022
3.1.0 383 12/2/2022
3.0.29 362 12/1/2022
3.0.28 371 11/23/2022
3.0.26 370 11/23/2022
3.0.25 369 11/18/2022
3.0.24 371 11/18/2022
3.0.23 374 11/15/2022
3.0.22 387 11/14/2022
3.0.21 403 11/13/2022
3.0.20 401 11/2/2022
3.0.19 395 11/2/2022
3.0.18 419 10/29/2022
3.0.17 418 10/29/2022
3.0.16 407 10/29/2022
3.0.15 398 10/29/2022
3.0.14 420 10/24/2022
3.0.13 426 10/24/2022
3.0.12 439 10/17/2022
3.0.11 478 10/10/2022
3.0.10 434 10/6/2022
3.0.9 432 10/6/2022
3.0.8 437 10/6/2022
3.0.7 441 10/6/2022
3.0.6 443 10/5/2022
3.0.4 458 10/5/2022
3.0.3 447 10/3/2022
3.0.2 449 9/30/2022
3.0.1 464 9/30/2022
2.0.16 497 9/27/2022
2.0.15 494 9/27/2022
2.0.14 509 9/26/2022
2.0.13 494 9/26/2022
2.0.12 500 9/26/2022
2.0.11 491 9/25/2022
2.0.10 511 9/25/2022
2.0.9 510 9/23/2022
2.0.8 482 9/22/2022
2.0.6 469 9/20/2022
2.0.5 473 9/20/2022
2.0.4 469 9/20/2022
2.0.3 475 9/20/2022
2.0.2 494 9/20/2022
2.0.1 545 9/13/2022
2.0.0 495 8/19/2022
1.1.23 538 7/30/2022
1.1.22 513 7/29/2022
1.1.21 508 7/29/2022
1.1.20 497 7/29/2022
1.1.19 496 7/27/2022
1.1.17 512 7/27/2022
1.1.16 513 7/26/2022
1.1.15 493 7/25/2022
1.1.14 492 7/25/2022
1.1.13 499 7/22/2022
1.1.12 500 7/19/2022
1.1.11 513 7/19/2022
1.1.10 502 7/19/2022
1.1.9 520 7/19/2022
1.1.8 525 7/18/2022
1.1.7 504 7/18/2022
1.1.6 488 7/18/2022
1.1.5 495 7/18/2022
1.1.4 489 7/17/2022
1.1.3 523 7/17/2022
1.1.2 507 7/17/2022
1.1.0 515 7/17/2022
1.0.2 501 7/15/2022
1.0.0 507 7/8/2022
0.10.7 511 7/8/2022
0.10.2 525 7/2/2022
0.10.1 514 7/1/2022
0.9.10 546 6/20/2022
0.9.9 486 6/11/2022