Comment on Scipio: A Thread-per-Core Crate for Rust and LinuxparentComments−unrealhoang5yIs there a mechanism to group some goroutines onto a single CPU thread to avoid locking? In the environments that have to rely on thread-per-core (sensitive to even 50us), blocking functions will become obvious in the profiling report.−BenoitP5yIs there a mechanism to group some goroutines onto a single CPU thread to avoid locking?Python's GIL comes to mind :p
Comments
Is there a mechanism to group some goroutines onto a single CPU thread to avoid locking? In the environments that have to rely on thread-per-core (sensitive to even 50us), blocking functions will become obvious in the profiling report.
Python's GIL comes to mind :p