|
|
|
|
|
by viklove
1941 days ago
|
|
More overhead, and it doesn't scale. My nodejs websockets server can handle thousands of connections without a problem, but my rails api server allocates a thread per connection so I'm limited to <16 unless I start horizontal scaling. For infrequent requests everything goes through the api, but for stuff like chat and live-document-editing, nodejs is the better solution. |
|