Rystem.RepositoryFramework.Cache.Azure.Storage.Blob
6.0.4
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 6.0.4
NuGet\Install-Package Rystem.RepositoryFramework.Cache.Azure.Storage.Blob -Version 6.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="6.0.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Rystem.RepositoryFramework.Cache.Azure.Storage.Blob --version 6.0.4
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Rystem.RepositoryFramework.Cache.Azure.Storage.Blob, 6.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.
// Install Rystem.RepositoryFramework.Cache.Azure.Storage.Blob as a Cake Addin #addin nuget:?package=Rystem.RepositoryFramework.Cache.Azure.Storage.Blob&version=6.0.4 // Install Rystem.RepositoryFramework.Cache.Azure.Storage.Blob as a Cake Tool #tool nuget:?package=Rystem.RepositoryFramework.Cache.Azure.Storage.Blob&version=6.0.4
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 | 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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net8.0
- Rystem.RepositoryFramework.Cache (>= 6.0.4)
- Rystem.RepositoryFramework.Infrastructure.Azure.Storage.Blob (>= 6.0.4)
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.0.0-rc.1 | 70 | 10/18/2024 |
6.2.0 | 181,858 | 10/10/2024 |
6.1.1 | 84 | 10/9/2024 |
6.1.0 | 47,837 | 9/29/2024 |
6.0.24 | 106 | 9/11/2024 |
6.0.23 | 87 | 7/18/2024 |
6.0.21 | 96 | 6/18/2024 |
6.0.20 | 104 | 6/16/2024 |
6.0.19 | 93 | 6/14/2024 |
6.0.18 | 95 | 6/14/2024 |
6.0.17 | 97 | 6/14/2024 |
6.0.16 | 93 | 6/10/2024 |
6.0.15 | 98 | 6/9/2024 |
6.0.14 | 99 | 5/24/2024 |
6.0.13 | 104 | 5/23/2024 |
6.0.12 | 95 | 5/23/2024 |
6.0.11 | 108 | 5/20/2024 |
6.0.9 | 111 | 5/20/2024 |
6.0.7 | 93 | 5/18/2024 |
6.0.6 | 92 | 5/10/2024 |
6.0.5 | 108 | 5/10/2024 |
6.0.4 | 114 | 4/3/2024 |
6.0.3 | 98 | 3/25/2024 |
6.0.0 | 243 | 11/21/2023 |
6.0.0-rc.6 | 101 | 10/25/2023 |
6.0.0-rc.5 | 69 | 10/25/2023 |
6.0.0-rc.4 | 67 | 10/23/2023 |
6.0.0-rc.3 | 65 | 10/19/2023 |
6.0.0-rc.2 | 70 | 10/18/2023 |
6.0.0-rc.1 | 72 | 10/16/2023 |
5.0.20 | 147 | 9/25/2023 |
5.0.19 | 152 | 9/10/2023 |
5.0.18 | 151 | 9/6/2023 |
5.0.17 | 145 | 9/6/2023 |
5.0.16 | 145 | 9/5/2023 |
5.0.15 | 138 | 9/5/2023 |
5.0.14 | 138 | 9/5/2023 |
5.0.13 | 133 | 9/1/2023 |
5.0.12 | 148 | 8/31/2023 |
5.0.11 | 128 | 8/30/2023 |
5.0.10 | 161 | 8/29/2023 |
5.0.9 | 182 | 8/24/2023 |
5.0.8 | 141 | 8/24/2023 |
5.0.7 | 149 | 8/23/2023 |
5.0.6 | 165 | 8/21/2023 |
5.0.5 | 155 | 8/21/2023 |
5.0.4 | 168 | 8/16/2023 |
5.0.3 | 198 | 8/2/2023 |
5.0.2 | 163 | 8/2/2023 |
5.0.1 | 163 | 8/1/2023 |
5.0.0 | 147 | 7/31/2023 |
4.1.26 | 195 | 7/20/2023 |
4.1.25 | 184 | 7/16/2023 |
4.1.24 | 240 | 6/13/2023 |
4.1.23 | 157 | 6/13/2023 |
4.1.22 | 159 | 5/30/2023 |
4.1.21 | 157 | 5/20/2023 |
4.1.20 | 315,274 | 4/19/2023 |
4.1.19 | 94,904 | 3/20/2023 |
4.1.18 | 212 | 3/20/2023 |
4.1.17 | 218 | 3/17/2023 |
4.1.16 | 214 | 3/16/2023 |
4.1.15 | 209 | 3/15/2023 |
4.1.14 | 790 | 3/9/2023 |
4.1.13 | 230 | 3/7/2023 |
4.1.12 | 353 | 2/10/2023 |
4.1.11 | 302 | 1/26/2023 |
4.1.10 | 289 | 1/22/2023 |
4.1.9 | 288 | 1/20/2023 |
4.1.8 | 297 | 1/18/2023 |
4.1.7 | 300 | 1/18/2023 |
4.1.6 | 289 | 1/17/2023 |
4.1.1 | 310 | 1/4/2023 |
4.1.0 | 308 | 1/1/2023 |
3.1.5 | 299 | 12/21/2022 |
3.1.3 | 310 | 12/12/2022 |
3.1.2 | 310 | 12/7/2022 |
3.1.1 | 300 | 12/7/2022 |
3.1.0 | 340 | 12/2/2022 |
3.0.29 | 320 | 12/1/2022 |
3.0.28 | 328 | 11/23/2022 |
3.0.26 | 328 | 11/23/2022 |
3.0.25 | 316 | 11/18/2022 |
3.0.24 | 330 | 11/18/2022 |
3.0.23 | 332 | 11/15/2022 |
3.0.22 | 345 | 11/14/2022 |
3.0.21 | 360 | 11/13/2022 |
3.0.20 | 359 | 11/2/2022 |
3.0.19 | 353 | 11/2/2022 |
3.0.18 | 377 | 10/29/2022 |
3.0.17 | 377 | 10/29/2022 |
3.0.16 | 365 | 10/29/2022 |
3.0.15 | 354 | 10/29/2022 |
3.0.14 | 376 | 10/24/2022 |
3.0.13 | 383 | 10/24/2022 |
3.0.12 | 386 | 10/17/2022 |
3.0.11 | 437 | 10/10/2022 |
3.0.10 | 391 | 10/6/2022 |
3.0.9 | 389 | 10/6/2022 |
3.0.8 | 392 | 10/6/2022 |
3.0.7 | 388 | 10/6/2022 |
3.0.6 | 401 | 10/5/2022 |
3.0.4 | 408 | 10/5/2022 |
3.0.3 | 406 | 10/3/2022 |
3.0.2 | 398 | 9/30/2022 |
3.0.1 | 423 | 9/30/2022 |
2.0.16 | 454 | 9/27/2022 |
2.0.15 | 452 | 9/27/2022 |
2.0.14 | 468 | 9/26/2022 |
2.0.13 | 452 | 9/26/2022 |
2.0.12 | 454 | 9/26/2022 |
2.0.11 | 448 | 9/25/2022 |
2.0.10 | 467 | 9/25/2022 |
2.0.9 | 469 | 9/23/2022 |
2.0.8 | 438 | 9/22/2022 |
2.0.6 | 427 | 9/20/2022 |
2.0.5 | 421 | 9/20/2022 |
2.0.4 | 416 | 9/20/2022 |
2.0.3 | 430 | 9/20/2022 |
2.0.2 | 453 | 9/20/2022 |
2.0.1 | 500 | 9/13/2022 |
2.0.0 | 453 | 8/19/2022 |
1.1.23 | 490 | 7/30/2022 |
1.1.22 | 466 | 7/29/2022 |
1.1.21 | 457 | 7/29/2022 |
1.1.20 | 447 | 7/29/2022 |
1.1.19 | 449 | 7/27/2022 |
1.1.17 | 467 | 7/27/2022 |
1.1.16 | 463 | 7/26/2022 |
1.1.15 | 446 | 7/25/2022 |
1.1.14 | 443 | 7/25/2022 |
1.1.13 | 454 | 7/22/2022 |
1.1.12 | 452 | 7/19/2022 |
1.1.11 | 468 | 7/19/2022 |
1.1.10 | 453 | 7/19/2022 |
1.1.9 | 472 | 7/19/2022 |
1.1.8 | 478 | 7/18/2022 |
1.1.7 | 457 | 7/18/2022 |
1.1.6 | 438 | 7/18/2022 |
1.1.5 | 449 | 7/18/2022 |
1.1.4 | 442 | 7/17/2022 |
1.1.3 | 474 | 7/17/2022 |
1.1.2 | 461 | 7/17/2022 |
1.1.0 | 468 | 7/17/2022 |
1.0.2 | 456 | 7/15/2022 |
1.0.0 | 461 | 7/8/2022 |
0.10.7 | 464 | 7/8/2022 |
0.10.2 | 480 | 7/2/2022 |
0.10.1 | 468 | 7/1/2022 |
0.9.10 | 498 | 6/20/2022 |
0.9.9 | 439 | 6/11/2022 |