ScaleHub.Core 0.1.4

dotnet add package ScaleHub.Core --version 0.1.4
                    
NuGet\Install-Package ScaleHub.Core -Version 0.1.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="ScaleHub.Core" Version="0.1.4" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="ScaleHub.Core" Version="0.1.4" />
                    
Directory.Packages.props
<PackageReference Include="ScaleHub.Core" />
                    
Project file
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 ScaleHub.Core --version 0.1.4
                    
#r "nuget: ScaleHub.Core, 0.1.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.
#addin nuget:?package=ScaleHub.Core&version=0.1.4
                    
Install ScaleHub.Core as a Cake Addin
#tool nuget:?package=ScaleHub.Core&version=0.1.4
                    
Install ScaleHub.Core as a Cake Tool

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 and OnUnsubscribing events.

Usage

To use the ScaleHub project, follow these steps:

  1. Configure ScaleHub: Use the AddScaleHub to inject the IScaleHub.

  2. Specify integration: Configure the project to connect to your external service, like SQL Server database. You can use UseSqlServer method for this purpose.

  3. 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; }
    }
    
  4. 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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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.

Version Downloads Last updated
0.1.4 225 1/5/2024
0.1.3 239 11/7/2023
0.1.2 177 11/1/2023
0.1.0 218 10/29/2023