On Concurrency

Kagamin via Digitalmars-d-learn digitalmars-d-learn at puremagic.com
Fri Apr 25 10:10:18 PDT 2014


Fibers are more lightweight, they're not kernel objects. Threads 
are scheduled by kernel (usually). Fibers are better if you can 
get better resource usage with manual scheduling - less context 
switches, or don't want to consume resources need by threads.


More information about the Digitalmars-d-learn mailing list