locked
SignalR scaleout with Redis Cluster RRS feed

  • Question

  • User1964052625 posted

    I read the Microsoft documentation of SignalR and it says that:

    SignalR scaleout with Redis does not support Redis clusters.

    but the documentation is 06/10/2014. To date there is a solution to use the Redis backplane with a cluster redis? Or how could I solve the problem? Can I put a reverse proxy (HAProxy) in front of the redis cluster to make it work?? Some idea? Thank you

    Tuesday, November 6, 2018 3:47 PM

All replies

  • User61956409 posted

    Hi Pampua84,

    Welcome to ASP.NET forums.

    As stated in documentation and this github issue, it seems that currently SignalR still does not support Redis Cluster. 

    Besides, if possible, you can create a new github issue to consult if SignalR team has any plan for supporting Scaleout with Redis Cluster.

    With Regards,

    Fei Han

    Wednesday, November 7, 2018 3:11 AM
  • User1281381861 posted

    Is this useful for your cause:

    public class Startup
    {
        public void Configuration(IAppBuilder app)
        {
            // Any connection or hub wire up and configuration should go here
            GlobalHost.DependencyResolver.UseRedis("server", port, "password", "AppName");
            app.MapSignalR();
        }
    }

    Saturday, November 24, 2018 3:35 PM