Will Dart execute isolates in parallel in a multi-core environment?
问题 Question Will isolates in Dart run in parallel utilizing all available cores on a multiple core environment, or will it multiplex on a single core? Background Google has described isolates (a single-threaded unit of concurrency) in the Dart programming language as a "light weight thread" that operates on the main stack, without blocking. Thus, it seems to me as it will only be able to multiplex on a single core and not be able to run in parallel over multiple cores in a SMP, dualcore,