Orleans.Persistence.Minio.Core
9.1.0
dotnet add package Orleans.Persistence.Minio.Core --version 9.1.0
NuGet\Install-Package Orleans.Persistence.Minio.Core -Version 9.1.0
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="Orleans.Persistence.Minio.Core" Version="9.1.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Orleans.Persistence.Minio.Core --version 9.1.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Orleans.Persistence.Minio.Core, 9.1.0"
#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 Orleans.Persistence.Minio.Core as a Cake Addin #addin nuget:?package=Orleans.Persistence.Minio.Core&version=9.1.0 // Install Orleans.Persistence.Minio.Core as a Cake Tool #tool nuget:?package=Orleans.Persistence.Minio.Core&version=9.1.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Orleans Minio Providers
Orleans is a framework that provides a straight-forward approach to building distributed high-scale computing applications, without the need to learn and apply complex concurrency or other scaling patterns.
Orleans.Minio
is a package that use Minio as a backend for Orleans providers like Cluster Membership, Grain State storage and Reminders.
Installation
Nuget Packages are provided:
- Orleans.Persistence.Minio.Core
- Orleans.Bary.Persistence.Minio
- Orleans.Clustering.Minio
Silo
IHostBuilder builder = Host.CreateDefaultBuilder(args)
.UseOrleans(silo =>
{
silo.Services.AddMinio(configureClient => configureClient
.WithEndpoint("enpoint")
.WithCredentials("accesskey", "secretkey")
.WithSSL(false)
.Build());
silo.Configure<ClusterOptions>(options =>
{
options.ClusterId = "DEV";
options.ServiceId = "DEV";
});
silo.UseMinioClustering();
silo.AddMinioGrainStorage("test", options =>{});
silo.ConfigureLogging(logging => logging.AddConsole());
silo.ConfigureEndpoints(
siloPort: 11111,
gatewayPort: 30001,
advertisedIP: IPAddress.Parse("IP"),
listenOnAnyHostAddress: true
);
silo.Configure<ClusterMembershipOptions>(options =>
{
options.EnableIndirectProbes = true;
options.UseLivenessGossip = true;
});
})
.UseConsoleLifetime();
using IHost host = builder.Build();
await host.RunAsync();
Client
var builder = WebApplication.CreateBuilder(args);
builder.Host.UseOrleansClient(client =>
{
client.Services.AddMinio(configureClient => configureClient
.WithEndpoint("enpoint")
.WithCredentials("accesskey", "secretkey")
.WithSSL(false)
.Build());
client.Configure<ClusterOptions>(options =>
{
options.ClusterId = "DEV";
options.ServiceId = "DEV";
});
client.UseMinioClustering( );
});
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. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net9.0
- No dependencies.
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Orleans.Persistence.Minio.Core:
Package | Downloads |
---|---|
Orleans.Bary.Persistence.Minio
Microsoft Orleans Persistence Service for Minio |
GitHub repositories
This package is not used by any popular GitHub repositories.
Version | Downloads | Last updated |
---|---|---|
9.1.0 | 91 | 2/3/2025 |