Skip to content

Latest commit

 

History

History
20 lines (14 loc) · 402 Bytes

README.md

File metadata and controls

20 lines (14 loc) · 402 Bytes

Mongo.SignalR.Backplane

MongoDB backplane for SignalR scale out

Installation

To install Hangfire MongoDB Storage, run the following command in the Nuget Package Manager Console:

PM> Install-Package Mongo.SignalR.Backplane

Usage ASP.NET Core

var client = new MongoClient("mongodb://localhost:27017");

builder.Services
    .AddSignalR()
    .AddMongoBackplane(client);