|
|
|
|
|
by tunesmith
4047 days ago
|
|
I'm curious what the bounds are on the client-side use case. For instance, machines can handle tons of simultaneous http connections, but it's easier to reach that limit if you hold SSE connections open for a while. I've used SSE in the context where we sent chunked pages of one output stream (where the stream was generated server-side all at once), but not where the connection is opened and then actually waiting for additional server information. Is it common for SSE connections to be held open for 30 seconds or even several minutes to be able to stream information? |
|
At least in Firefox, the limit for websockets is much more generous (200, but shared across the whole browser, IIRC).
Both the Chrome and Firefox dev teams WONTFIXed my suggestion to increase the limit for Server Sent Event connections.
https://code.google.com/p/chromium/issues/detail?id=275955
https://bugzilla.mozilla.org/show_bug.cgi?id=906896