Fibers are a lightweight thread of execution similar to os threads. they yield themselves to allow another fiber to run. this is true when you have n:1 thread, but it’s not so with m:n threading. you should be cognisant of how much stack memory you’re giving to your fiber scheduler. if you require timed sleeping primitives, you’ll need to implement those yourself in your fibre schedule. the … [summary] [comments]
Source link