|
|
|
|
|
by easychris
3314 days ago
|
|
That's true for threads (although most of your threads should be blocked by IO, e. g. DB queries, and that means the GIL lock isn't a big issue). But the beauty of HTTP is that you can scale simply by adding more "endpoints". That means you can add as many processes (workers) as necessary to utilize all CPUs, or even add as many servers as you can afford. I'm not saying that Elixir does not do a better job with it's lean processes and built-in OTP stuff. But it's not true that you can't utilize all CPUs with a Rails app. |
|