Rystem.RepositoryFramework.Cache.Azure.Storage.Blob 9.0.4

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.4
                    
NuGet\Install-Package Rystem.RepositoryFramework.Cache.Azure.Storage.Blob -Version 9.0.4
                    
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.4" />
                    
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.4" />
                    
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.4
                    
#r "nuget: Rystem.RepositoryFramework.Cache.Azure.Storage.Blob, 9.0.4"
                    
#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.4
                    
#: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.4
                    
Install as a Cake Addin
#tool nuget:?package=Rystem.RepositoryFramework.Cache.Azure.Storage.Blob&version=9.0.4
                    
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 180 9/2/2025
9.1.2 614,290 5/29/2025
9.1.1 97,750 5/2/2025
9.0.32 186,650 4/15/2025
9.0.31 5,737 4/2/2025
9.0.30 88,750 3/26/2025
9.0.29 8,959 3/18/2025
9.0.28 198 3/17/2025
9.0.27 194 3/16/2025
9.0.26 203 3/13/2025
9.0.25 52,069 3/9/2025
9.0.21 261 3/6/2025
9.0.20 19,538 3/6/2025
9.0.19 258 3/6/2025
9.0.18 269 3/4/2025
9.0.17 157 3/1/2025
9.0.16 159 3/1/2025
9.0.15 75,496 2/22/2025
9.0.14 22,528 2/18/2025
9.0.13 164 2/9/2025
9.0.12 217,703 1/13/2025
9.0.11 24,019 1/9/2025
9.0.10 137 1/9/2025
9.0.9 4,018 1/7/2025
9.0.8 12,504 1/6/2025
9.0.7 158 1/6/2025
9.0.4 92,276 12/23/2024
9.0.3 162 12/22/2024
9.0.2 10,706 12/21/2024
9.0.1 1,200 12/21/2024
9.0.0 172,989 11/16/2024
9.0.0-rc.1 101 10/18/2024
6.2.0 219,072 10/10/2024
6.1.1 166 10/9/2024
6.1.0 47,915 9/29/2024
6.0.24 185 9/11/2024
6.0.23 187 7/18/2024
6.0.21 175 6/18/2024
6.0.20 184 6/16/2024
6.0.19 171 6/14/2024
6.0.18 172 6/14/2024
6.0.17 180 6/14/2024
6.0.16 165 6/10/2024
6.0.15 173 6/9/2024
6.0.14 184 5/24/2024
6.0.13 177 5/23/2024
6.0.12 166 5/23/2024
6.0.11 185 5/20/2024
6.0.9 183 5/20/2024
6.0.7 166 5/18/2024
6.0.6 186 5/10/2024
6.0.5 184 5/10/2024
6.0.4 193 4/3/2024
6.0.3 178 3/25/2024
6.0.0 287 11/21/2023
6.0.0-rc.6 132 10/25/2023
6.0.0-rc.5 96 10/25/2023
6.0.0-rc.4 95 10/23/2023
6.0.0-rc.3 96 10/19/2023
6.0.0-rc.2 98 10/18/2023
6.0.0-rc.1 101 10/16/2023
5.0.20 199 9/25/2023
5.0.19 213 9/10/2023
5.0.18 218 9/6/2023
5.0.17 210 9/6/2023
5.0.16 211 9/5/2023
5.0.15 205 9/5/2023
5.0.14 207 9/5/2023
5.0.13 200 9/1/2023
5.0.12 214 8/31/2023
5.0.11 194 8/30/2023
5.0.10 229 8/29/2023
5.0.9 254 8/24/2023
5.0.8 217 8/24/2023
5.0.7 219 8/23/2023
5.0.6 234 8/21/2023
5.0.5 224 8/21/2023
5.0.4 239 8/16/2023
5.0.3 271 8/2/2023
5.0.2 248 8/2/2023
5.0.1 238 8/1/2023
5.0.0 221 7/31/2023
4.1.26 273 7/20/2023
4.1.25 260 7/16/2023
4.1.24 331 6/13/2023
4.1.23 248 6/13/2023
4.1.22 253 5/30/2023
4.1.21 246 5/20/2023
4.1.20 315,364 4/19/2023
4.1.19 95,000 3/20/2023
4.1.18 304 3/20/2023
4.1.17 306 3/17/2023
4.1.16 308 3/16/2023
4.1.15 300 3/15/2023
4.1.14 882 3/9/2023
4.1.13 323 3/7/2023
4.1.12 456 2/10/2023
4.1.11 401 1/26/2023
4.1.10 388 1/22/2023
4.1.9 384 1/20/2023
4.1.8 392 1/18/2023
4.1.7 395 1/18/2023
4.1.6 384 1/17/2023
4.1.1 409 1/4/2023
4.1.0 402 1/1/2023
3.1.5 397 12/21/2022
3.1.3 405 12/12/2022
3.1.2 416 12/7/2022
3.1.1 395 12/7/2022
3.1.0 437 12/2/2022
3.0.29 417 12/1/2022
3.0.28 428 11/23/2022
3.0.26 425 11/23/2022
3.0.25 423 11/18/2022
3.0.24 426 11/18/2022
3.0.23 428 11/15/2022
3.0.22 442 11/14/2022
3.0.21 458 11/13/2022
3.0.20 458 11/2/2022
3.0.19 452 11/2/2022
3.0.18 476 10/29/2022
3.0.17 476 10/29/2022
3.0.16 474 10/29/2022
3.0.15 454 10/29/2022
3.0.14 476 10/24/2022
3.0.13 483 10/24/2022
3.0.12 497 10/17/2022
3.0.11 536 10/10/2022
3.0.10 490 10/6/2022
3.0.9 490 10/6/2022
3.0.8 495 10/6/2022
3.0.7 499 10/6/2022
3.0.6 501 10/5/2022
3.0.4 515 10/5/2022
3.0.3 507 10/3/2022
3.0.2 509 9/30/2022
3.0.1 537 9/30/2022
2.0.16 556 9/27/2022
2.0.15 552 9/27/2022
2.0.14 569 9/26/2022
2.0.13 553 9/26/2022
2.0.12 559 9/26/2022
2.0.11 550 9/25/2022
2.0.10 571 9/25/2022
2.0.9 571 9/23/2022
2.0.8 541 9/22/2022
2.0.6 527 9/20/2022
2.0.5 531 9/20/2022
2.0.4 528 9/20/2022
2.0.3 535 9/20/2022
2.0.2 553 9/20/2022
2.0.1 603 9/13/2022
2.0.0 555 8/19/2022
1.1.23 599 7/30/2022
1.1.22 571 7/29/2022
1.1.21 569 7/29/2022
1.1.20 555 7/29/2022
1.1.19 555 7/27/2022
1.1.17 572 7/27/2022
1.1.16 572 7/26/2022
1.1.15 552 7/25/2022
1.1.14 550 7/25/2022
1.1.13 566 7/22/2022
1.1.12 570 7/19/2022
1.1.11 574 7/19/2022
1.1.10 576 7/19/2022
1.1.9 581 7/19/2022
1.1.8 589 7/18/2022
1.1.7 564 7/18/2022
1.1.6 549 7/18/2022
1.1.5 556 7/18/2022
1.1.4 548 7/17/2022
1.1.3 583 7/17/2022
1.1.2 570 7/17/2022
1.1.0 587 7/17/2022
1.0.2 561 7/15/2022
1.0.0 574 7/8/2022
0.10.7 570 7/8/2022
0.10.2 584 7/2/2022
0.10.1 576 7/1/2022
0.9.10 605 6/20/2022
0.9.9 547 6/11/2022