I am currently playing SignalR 2.0.3, scaling it with BackPlane, which uses Redis for windows http://msopentech.com/blog/2013/04/22/redis-on-windows-stable-and-reliable/
I integrated with the corresponding SignalR.Redis package in VS.
I made the following changes to my launch:
GlobalHost.DependencyResolver.UseRedis( server: "localhost", port: 6379, password: string.Empty, eventKey: "BroadcasterExample" ); app.MapSignalR(hubConfiguration);
He builds great. My client seems to be connecting to OK. I can send notifications between client and server and vice versa.
From the Redis client, I can enter:
get BroadcasterExample which returns: "3"
I assume that everything works, but ...
A couple of questions: 1) How can I say that this really works?
2) What can I check on the Redis server (although the Redis client)?
3) What is stored in data structures (key / value pairs, lists, hashes, sets)?
I would like to have a more detailed idea of what is happening. I looked at the commands: http://redis.io/commands Nothing jumps at me, which will help me outline what is actually happening.
Can someone point me in the right direction here?
Thanks Johnb