Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

26
votes
7answers
2k views

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 they're available in other languages, could somebody explain to me in simple terms what is the ...
11
votes
2answers
692 views

Coroutines in C#

I am looking to implement co-routines (user schedualed threads) in c#. When using c++ I was previously using fibers. As I see on the internet fibers do not exist in C#. I would like to get simillar ...
6
votes
1answer
476 views

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: Processes Threads "Green threads" Protothreads Fibers Coroutines ...
6
votes
3answers
2k views

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 not qualify (not lightweight), neither do Portable Coroutine Library nor Kent C++CSP ...
5
votes
0answers
166 views

Why in Ruby 1.9 Continuations are evil? [closed]

I am relative new in Ruby world. And I don't know, what to think. In 'The Ruby Programming Language' I read I shouldn't use Continuations in new code and use Fibers instead. I found this presentation ...
5
votes
2answers
536 views

Ruby concurrency/asynchronous processing (with simple use case)

I was looking into ruby's parallel/asynchronous processing capabilities and read many articles and blog posts. I looked through EventMachine, Fibers, Revactor, Reia, etc, etc. Unfortunately, I wasn't ...
5
votes
5answers
494 views

Scripting languages that support fibers/coroutines?

I'd like to start a new network server project in a language that supports concurrency through fibers aka coroutines aka user-mode threads. Determining what exactly are my options has been ...
5
votes
3answers
1k views

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 (the win32 version) and haven't had any luck. Does anybody know of such a beast?
4
votes
4answers
1k views

Fibers in C#: are they faster than iterators, and have people used them?

So I was chatting with a colleague about fibers and turned up this paper from 2003 that describes a implementation of coroutines in C# using the Fiber API. The implementation of Yield in this paper ...
4
votes
4answers
2k views

How do Enumerators work in Ruby 1.9.1?

This question is not about how to use Enumerators in Ruby 1.9.1 but rather I am curious how they work. Here is some code: class Bunk def initialize @h = [*1..100] end def each if ...
2
votes
1answer
126 views

Fiber#alive? not defined

I use ruby1.9.2p180 (2011-02-18 revision 30909) i686-linux. Fiber#alive? returns an undefined error: fiber = Fiber.new{puts 'hello'} fiber.alive? => undefined error Other methods, for example, ...
2
votes
3answers
313 views

What are Erlang processes behind the scenes?

I've got very limited knowledge about Erlang, but as far as I understand, it can spawn "processes" with a very low cost. So I wonder, what are those "processes" behind the scenes? Are they Fibers? ...
1
vote
2answers
261 views

Sinatra session not preserved with Rack::FiberPool

The session is not preserved between requests, though I can't see what I'm doing wrong. Code! require 'sinatra' require 'rack/fiber_pool' class SessionTest < Sinatra::Base use Rack::FiberPool ...
1
vote
0answers
43 views

Do fibers have priorities?

Fibers are defined as lightweight threads, and threads have priorities because they are preemptively scheduled. However, since fibers are cooperative do they too have priorities?
1
vote
4answers
1k views

Asynchronous HTTP request

require 'net/http' urls = [ {'link' => 'http://www.google.com/'}, {'link' => 'http://www.yandex.ru/'}, {'link' => 'http://www.baidu.com/'} ] urls.each do |u| u['content'] = Net::HTTP.get( ...
1
vote
2answers
401 views

How do I use Ruby1.9 with Shoes?

Shoes wraps it's own Ruby install, right? I can't use Fiber which is a Ruby1.9 feature. And, I want to use a Fiber for creating a generator. Here's my code (so you can make sure the problem isn't ...
1
vote
1answer
70 views

Where can a student get his hands on some fiber optics equipment?

I'm a computer science student and was able to convince a CDN who has a NOC locally to give me a tour of their facility this last Monday. I thought it was great and might consider network engineering ...
0
votes
2answers
49 views

ruby thread block?

I read somewhere that ruby threads/fibre block the IO even with 1.9. Is this true and what does it truly mean? If I do some net/http stuff on multiple threads, is only 1 thread running at a given time ...
0
votes
0answers
142 views

Question About Creating Production Ready Custom AMI On EC2 [closed]

I am in the process of trying to create a production reading custom AMI on EC2 (storing the image on S3, obviously) I am kinda new to this, so I am just to tell you guys what I am thinking, and then ...
0
votes
0answers
108 views

Fiber local storage

In Visual C++ it's possible to use declspec to specify the variable's storage. For example, __declspec( thread ) int tls_i; specifies that tls_i should be stored on thread's local storage. Is ...
0
votes
2answers
264 views

Prevent ffmpeg from taking over stdout

When I do system "ffmpeg -i just-do-it.mp4 -ab 96k -ar 22050 -qscale 6 output.flv" ffmpeg takes over the ruby process till the job is done, which sometimes take a long time. I've tried using threads ...