I am planning to use signalR between Client and server for some real time communication. How ever every now and then the client need to send large data ~15MB to the server.
1) Looks like signalR is not meant for sending large data. Have they added any support for sending large data in the recent releases ?
2) What is the largest data array I can send in a message ?
3) Is it too slow to split the large data and send it as smaller chunk ?
4) What is the alternate option ? Any example I can look into?
5) Can I run WCF service to stream large data along with signalR for real time communication ?