Replies: 1 comment
-
I would also really like to know about a lot of details of Mojo's internals. I've heard the team mention their ambitions about the Actor model. Maybe each task is implemented as an actor internally. |
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
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Does
parallelize
spin up a pool of worker threads, one thread per CPU core, and use work stealing to balance the tasks across threads? (like Rayon?)Or does
parallelize
spin up one OS thread per task? Or use a blocking queue to distribute tasks to a thread pool?Beta Was this translation helpful? Give feedback.
All reactions