Top "Fiber" questions

A fiber is a lightweight thread which uses cooperative rather than preemptive multitasking.

Coroutines in C#

I am looking at ways to implement co-routines (user scheduled threads) in c#. When using c++ I was using fibers. …

c# coroutine fiber
What is the difference between a thread and a fiber?

What is the difference between a thread and a fiber? I've heard of fibers from ruby and I've read heard …

multithreading coroutine fiber
Making multiple HTTP requests asynchronously

require 'net/http' urls = [ {'link' => 'http://www.google.com/'}, {'link' => 'http://www.yandex.ru/'}, {'link' => …

ruby concurrency asynchronous fiber
Is there a fiber api in .net?

Out of more curiosity than anything I've been looking for a set of C#/.net classes to support fibers/co-routines (…

c# .net fiber
Lightweight, portable C++ fibers, MIT license

I would like to get ahold of a lightweight, portable fiber lib with MIT license (or looser). Boost.Coroutine does …

c++ licensing portability fiber
Processes, threads, green threads, protothreads, fibers, coroutines: what's the difference?

I'm reading up on concurrency. I've got a bit over my head with terms that have confusingly similar definitions. Namely: …

multithreading concurrency process parallel-processing fiber
With Boost.Fiber does c++ come one step closer to Erlang style process/threads?

I am reading http://olk.github.io/libs/fiber/doc/html/ It seems to me that with Boost.Fiber C++ …

c++11 boost erlang real-time fiber