Replies: 1 comment
-
The fiber scheduler's main thesis is that a large amount of your program is spent waiting on I/O and similar blocking operations. So the main advantage is the transparent multiplexing of these operations. Naturally, your program will also benefit from the JIT which provides faster execution. However, in order for this to be true, your program would need to have significant portions of CPU bound work. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Beta Was this translation helpful? Give feedback.
All reactions