0

I have plain old SOAP "REST" service written in WCF which is hosted on Azure as WebRole. I am currently writing website which will consume this service and show some nice GUI for it. WebSite will be hosted as WebRole too and is written in ASP MVC 5.

Now i am looking for some Synchronization Framework i can implement into both sides (website and service). There will be more clients than web-site (Store app, Desktop client, android etc.)

Now i came to SignalR and XSockets.net but. Can these frameworks be scaled to more instances automaticaly and how that exactly work? For signalR i found it uses ServiceBus as background does Xsockets have simmilar? For Xsockets i found some issue page which look kinda new, but there is not a word about scalability.

LightCZ
  • 695
  • 1
  • 8
  • 20

1 Answers1

2

By default XSockets scale over sockets and not SQL or redis. If you want to scale over something else just write your own plugin. https://github.com/XSockets/XSockets.NET-4.0

Uffe
  • 2,275
  • 1
  • 13
  • 9
  • i ll mark that a solution since i have to write it myself and utilize XSockets is pretty much best solution for me. Thanks for answer anyway. – LightCZ Sep 30 '14 at 13:09