1
vote
1answer
65 views

Why is not SignalR.Redis available on NuGet?

first of all this is my first question and I want to follow rules, but if I made a mistake, I am apologize :) My problem is that I want scale-out my website, which using SignalR and I wanted to ...
2
votes
1answer
128 views

SignalR.Redis and ServiceStack.Redis in the same web app

I am using SignalR.Redis and ServiceStack.Redis in my web application. I noticed that SignalR.Redis uses the Booksleeve redis client and of course ServiceStack.Redis has its own client code. Is it ...
0
votes
1answer
76 views

Groups using SignalR & Redis

Does SignalR.Redis support Groups? I am trying to implement SignalR using Redis, and messages are delivered properly when sent to All clients, but are not delivered when sent to a Group. I am adding ...
2
votes
1answer
157 views

SignalR - Switch between different Redis backplanes

Let's assume we have 2 Redis Server Backplanes, one as Master and the other as Slave. Each web application is using SignalR in order to push content to the connected clients as it happens and in ...
3
votes
1answer
270 views

Can someone explain exactly how Booksleeve and Redis work together and it's application in a SignalR app?

We are implementing scale-out for our SignalR app and trying to avoid a single point of failure in our cluster. Thus, more than one Redis message bus server is required. The problem with ...
0
votes
0answers
206 views

Clarification on using Redis with SignalR, and is Redis Sentinel (failover) supported - how?

I read "How does SignalR.Redis work under the hood?" and the latest documentation on SignalR with Redis Running on a Windows Azure VM, however I would just like some clarification: A client connects ...
0
votes
1answer
181 views

How to create a local Windows-based service bus outside of Azure, similar to Redis with automatic fail-over?

We are implementing a service/message-bus feature in our SignalR application and have been looking at Redis, with automatic fail-over using Redis Sentiel. We would like to maintain our own servers ...
1
vote
2answers
749 views

Is Redis a better option for SignalR scale out over SQL Server, and do each support failover?

In David Fowler's blog, SQL Server has been added to the list of scale out providers for service bus. I am in the process of implementing Redis on our Windows servers. Based on what I know about ...
13
votes
1answer
2k views

How does SignalR.Redis work under the hood?

Other than reading the code in github, is there any white paper type of documentation on how the SignalR.Redis package works? Specifically I am wondering what keys it adds to Redis, update/deletion ...
0
votes
1answer
56 views

Importing SignalR.Redis package cause SignalR errors

I have a working application using SignalR hubs with a single web instance. I need to extend the functionality to a web farm. So I am trying to use the SignalR.Redis package. After I import that ...
0
votes
1answer
98 views

SignalR cross-server Group info with Redis

I wanted to know if the user's GROUP data is shared across servers when using SignalR + Redis. I want to know that because I need to decide whether to use Caching to keep the Group data sync across ...
1
vote
1answer
251 views

SignalR + Redis on local computer

I've downloaded the last Signalr.Redis package (v0.1) and I've compiled the last Redis source code (2.4.26). I tried to run Redis on my local pc (server and client work well) but when I start SignalR ...