0

I'm gonna start developing a single page web application using Microsoft stack. In some critical parts of the project I have to provide real time data. I can use Signalr or Web Sockets for these kind of tasks. Can you do a comparison of them in terms of usability, performance or learning curves of these technologies. And I'm glad to know if you have another option to suggest.

Thanks in advance,

xkcd
  • 2,538
  • 11
  • 59
  • 96

1 Answers1

0

I think you should go with signalR. It is part of .net framework, it also supports web sockets and if any client doesnt support web sockets it will fallback to long-polling, forever frames any other technology available.

.NET 4.5 WebSockets vs SignalR

http://www.asp.net/vnext/overview/signalr/signalr-and-web-sockets

http://www.hanselman.com/blog/YourUsersDontCareIfYouUseWebSockets.aspx

Community
  • 1
  • 1
adt
  • 4,320
  • 5
  • 35
  • 54