Rystem.RepositoryFramework.Cache.Azure.Storage.Blob
9.0.28
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Rystem.RepositoryFramework.Cache.Azure.Storage.Blob --version 9.0.28
NuGet\Install-Package Rystem.RepositoryFramework.Cache.Azure.Storage.Blob -Version 9.0.28
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.28" />
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.28" />
<PackageReference Include="Rystem.RepositoryFramework.Cache.Azure.Storage.Blob" />
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.28
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Rystem.RepositoryFramework.Cache.Azure.Storage.Blob, 9.0.28"
#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.28
#: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.28
#tool nuget:?package=Rystem.RepositoryFramework.Cache.Azure.Storage.Blob&version=9.0.28
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
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 | Versions 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.
-
net9.0
- Rystem.RepositoryFramework.Cache (>= 9.0.28)
- Rystem.RepositoryFramework.Infrastructure.Azure.Storage.Blob (>= 9.0.28)
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 |
|---|---|---|
| 10.0.4 | 81 | 2/9/2026 |
| 10.0.3 | 38,499 | 1/28/2026 |
| 10.0.1 | 209,045 | 11/12/2025 |
| 9.1.3 | 229 | 9/2/2025 |
| 9.1.2 | 764,430 | 5/29/2025 |
| 9.1.1 | 97,792 | 5/2/2025 |
| 9.0.32 | 186,696 | 4/15/2025 |
| 9.0.31 | 5,781 | 4/2/2025 |
| 9.0.30 | 88,793 | 3/26/2025 |
| 9.0.29 | 9,001 | 3/18/2025 |
| 9.0.28 | 239 | 3/17/2025 |
| 9.0.27 | 249 | 3/16/2025 |
| 9.0.26 | 243 | 3/13/2025 |
| 9.0.25 | 52,113 | 3/9/2025 |
| 9.0.21 | 304 | 3/6/2025 |
| 9.0.20 | 19,585 | 3/6/2025 |
| 9.0.19 | 302 | 3/6/2025 |
| 9.0.18 | 309 | 3/4/2025 |
| 9.0.17 | 196 | 3/1/2025 |
| 9.0.16 | 207 | 3/1/2025 |
Loading failed