Posts
-
#linux -
When teaching async Rust, there is often an emphasis on concurrency vs parallelism.@nrc @adam_chal
Regular threads will eat num threads x stack size mem. You have min scheduling latency of ≈1ms. So in worst case each thread will wait num threads * 1ms. (in case with file io Tokio will give you the same results :))