Orleans.Clustering.Oracle
8.2.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 Orleans.Clustering.Oracle --version 8.2.0.4
NuGet\Install-Package Orleans.Clustering.Oracle -Version 8.2.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="Orleans.Clustering.Oracle" Version="8.2.0.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Orleans.Clustering.Oracle --version 8.2.0.4
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Orleans.Clustering.Oracle, 8.2.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 Orleans.Clustering.Oracle as a Cake Addin #addin nuget:?package=Orleans.Clustering.Oracle&version=8.2.0.4 // Install Orleans.Clustering.Oracle as a Cake Tool #tool nuget:?package=Orleans.Clustering.Oracle&version=8.2.0.4
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Orleans Oracle 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.Oracle
is a package that use Oracle as a backend for Orleans providers like Cluster Membership, Grain State storage.
Installation
Nuget Packages are provided:
- Orleans.Persistence.Oracle
- Orleans.Persistence.Oracle.State
- Orleans.Clustering.Oracle
Silo
IHostBuilder builder = Host.CreateDefaultBuilder(args)
.UseOrleans(silo =>
{
silo.Configure<ClusterOptions>(options =>
{
options.ClusterId = "DEV";
options.ServiceId = "DEV";
});
silo.UseOracleClustering(option =>
{
option.ConnectionString = "your-connection-string";
});
silo.AddOracleGrainStorage<Test1Context>("Test1Context", option =>
{
option.ConnectionString = "your-connection-string";
option.Tables = new List<Type> { typeof(TestModel) };
});
silo.AddOracleGrainStorage<Test2Context>("Test2Context", option =>
{
option.ConnectionString = "your-connection-string";
option.Tables = new List<Type> { typeof(TestModel) };
});
silo.ConfigureLogging(logging => logging.AddConsole());
silo.ConfigureEndpoints(
siloPort: 11111,
gatewayPort: 30001,
advertisedIP: IPAddress.Parse("192.168.68.41"),
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.Configure<ClusterOptions>(options =>
{
options.ClusterId = "DEV";
options.ServiceId = "DEV";
});
client.UseOracleClustering(option =>
{
option.ConnectionString = "";
});
});
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
- Microsoft.Orleans.Runtime (>= 8.2.0)
- Oracle.EntityFrameworkCore (>= 8.23.50)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.