You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When we pick up a slow file (primarily because it invokes JavaScript callback or other large overhead) we want this to only block that thread.
It's not a huge problem to block one thread at a time since the ratio if slow work to fast work is usually fine. The problem is when we allow fast work to queue up on that same thread.
The text was updated successfully, but these errors were encountered:
When we pick up a slow file (primarily because it invokes JavaScript callback or other large overhead) we want this to only block that thread.
It's not a huge problem to block one thread at a time since the ratio if slow work to fast work is usually fine. The problem is when we allow fast work to queue up on that same thread.
The text was updated successfully, but these errors were encountered: