c# - Will Server-Sent Events or SignalR perform better? -


putting aside moment fact ie doesn't support sse, if there's large number of clients, server-sent events or signalr going perform better?

one thing bear in mind that, under hood, signalr default best available method of sending/receiving data e.g. ajax long polling, server side events, web sockets.

the decision based on attributes such browser in use, plus web server (e.g. iis8 has support web sockets, signalr use if user's browser supports it). i'm saying that, signalr can support many ways of creating connection, there no 1 way available. if use server side events, signalr can use them, or next best thing web sockets.

so best isn't fair question in hindsight.

edit: extract this article:

though signalr tries choose "best" connection supported server , client...


Comments

Popular posts from this blog

Unable to remove the www from url on https using .htaccess -