Disclaimer: I have little knowledge about JavaScript, but lots of experience with high performance job scheduling.
Real world browsers start separate threads or process for each window, HU has only one executor for all windows combined. As soon as a job blocks (like XMLHttpRequest timing out), all JS processing stops. This is a real showstopper for my code. A thread pool would be the solution.
Disclaimer: I have little knowledge about JavaScript, but lots of experience with high performance job scheduling.
Real world browsers start separate threads or process for each window, HU has only one executor for all windows combined. As soon as a job blocks (like XMLHttpRequest timing out), all JS processing stops. This is a real showstopper for my code. A thread pool would be the solution.