I am trying to send notifications through SignalR. It works perfectly.
But what is the maximum size of a message we can send through SignalR?
Does it have any official limit as such?
Since a browser is limited to six connections, we can try to manually monitor how many connections are supported by a given browser.
A SignalR app can scale out based on the number of messages sent, while the Azure SignalR Service scales to handle any number of connections.
The default keepalive timeout period is currently 20 seconds. If your client code tries to call a Hub method while SignalR is in reconnecting mode, SignalR will try to send the command. Most of the time, such attempts will fail, but in some circumstances they might succeed.
SignalR is a Microsoft framework specifically designed to facilitate real-time client/server communication. It provides an effective implementation of long polling that doesn't have a deep impact on the server, and at the same time ensures that clients are appropriately updated about what's going on remotely.
https://github.com/SignalR/SignalR/issues/1205
It's recommended to keep below 32K/message
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With