|
|
|
|
|
by kqueue
5364 days ago
|
|
1. Process creation and termination are heavy operations considering that it's being done in a tight loop. 2. You don't want to fork on every request, this is very vulnerable to fork bombs. 3. In worker threads model, you already have the work threads spawned and ready for crunching, which will reduce the system load because you aren't forking on every request. |
|
(I'm not saying they aren't or that I know the answer.)