ScaleHub.Core
0.1.4
dotnet add package ScaleHub.Core --version 0.1.4
NuGet\Install-Package ScaleHub.Core -Version 0.1.4
<PackageReference Include="ScaleHub.Core" Version="0.1.4" />
<PackageVersion Include="ScaleHub.Core" Version="0.1.4" />
<PackageReference Include="ScaleHub.Core" />
paket add ScaleHub.Core --version 0.1.4
#r "nuget: ScaleHub.Core, 0.1.4"
#addin nuget:?package=ScaleHub.Core&version=0.1.4
#tool nuget:?package=ScaleHub.Core&version=0.1.4
ScaleHub
The ScaleHub is a lib designed for managing scales in distributed applications. It provides tools for monitoring the number of service replicas and synchronizing data across multiple instances or servers. The project includes Service Broker for real-time data updates, background services, and external synchronization components.
Features
External Synchronization: Implement external real-time synchronization to keep data consistent across instances.
Event Architecture Oriented: Instantly receive notifications when changes occur, allowing your application to react promptly, with
OnSubscribing
andOnUnsubscribing
events.
Usage
To use the ScaleHub project, follow these steps:
Configure ScaleHub: Use the
AddScaleHub
to inject theIScaleHub
.Specify integration: Configure the project to connect to your external service, like SQL Server database. You can use
UseSqlServer
method for this purpose.Monitoring: Use the
IScaleHub
to obtain infomations about your instance and the number of replicas.public class ScaleContext { public int Replicas { get; set; } public int Actual { get; set; } }
Configure Events: [optional] Make use of the
ConfigureSubs
method to monitor and deal with replicas number change.OnSubscribing: Configure events to trigger when a new replica is added.
OnUnsubscribing: Configure events to trigger when a old replica is removed.
Example
services.AddScaleHub(opt =>
{
opt.UseSqlServer("your_connection_string");
opt.ConfigureSubs(e =>
{
e.OnSubscribing += LogNewReplica;
e.OnUnsubscribing += LogOldReplica;
});
});
// 5. Start and monitor your distributed application using the ScaleHub system.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. 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. net9.0 was computed. 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. |
-
net6.0
- Microsoft.Extensions.Hosting.Abstractions (>= 6.0.0)
NuGet packages (2)
Showing the top 2 NuGet packages that depend on ScaleHub.Core:
Package | Downloads |
---|---|
ScaleHub.SqlServer
ScaleHub.SqlServer SQL Server integration for ScaleHub. |
|
ScaleHub.DependecyInjection
ScaleHub.DependecyInjection ScaleHub extension for Microsoft.Extensions.DependencyInjection. |
GitHub repositories
This package is not used by any popular GitHub repositories.