|
|
|
|
|
by mrcsharp
409 days ago
|
|
Well with SSE the server and client are both holding a HTTP connection open for over a relatively long period of time. If the server is written with a language that supports async paradigms, then a http request that needs async IO will use about the same amount of resource anyways. And when the response if finished, that connection is closed and resources are freed. Whereas SSE will keep them for much longer. |
|
By async I meant a process that may take longer than you are willing to do within the request/response cycle, not necessarily async IO.