Questions tagged [backbone.signalr]

Backbone.SignalR integration

Integration between Backbone.js and SignalR for pushing/pulling data.

2 questions
1
vote
1 answer

SingnalR with Redis Send Msg to Specific ConnectionID

I am using SingalR for my Chat Application. Wanted to play with Redis and SignalR but I cannot find an working example where i can send msg to specific connectionId. Below Code that works for a single server instance. But when i make it a Web…
Justin Homes
  • 3,739
  • 9
  • 49
  • 78
0
votes
1 answer

why collection.reset works like collection.add?

I have a view with a Backbone collection. When I reset the collection through backbone.signalR hub, I expect to get a new collection which I pass through my hub but it just resets the collection and then works like calling collection.add on whatever…