Based on this topic signalr-sqlserver-listening, SignalR can be used in a webfarm, using Sql server as the backplane to communicate messages to all webnodes.
I wonder if there is any documentation/example on this.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There is an unreleased implementation of SignalR using SQL Server as Message Bus (backplane) that is in the works. You can view and compile the source from https://github.com/SignalR/SignalR/tree/master/src/Microsoft.AspNet.SignalR.SqlServer
Once you have a compiled version and make reference to the SignalR.SqlServer assembly in your project, you can enable the SQL Server backplane by invoking the following, typically from the
Application_Startmethod in your global.asax.cs file.This assumes you have defined the SignalRMessageBus connection string in your web.config file.
The SignalR.SqlServer assembly will create the needed tables if they do not already exist in the database instance you are targeting with your connection string, so make sure the account you are accessing with has the permissions to create tables.
Again, this has not been officially released but according to the issue for this – Sql server scale out Message Bus this will be part of the upcoming 1.0 Alpha 1 release.