Y
Hacker News
new
|
ask
|
show
|
jobs
by
ricardobeat
5368 days ago
That's not avoiding it. The thread in question will still block for 500ms. The same holds true for a multi-process node app.
1 comments
wlievens
5367 days ago
The point is that in a multi-thread architecture, you can still serve requests on the other threads. In a single-process non-blocking IO architecture, blocking CPU calculations will block everyone.
Big deal. Use workers to solve that. End of story.
link
Big deal. Use workers to solve that. End of story.