Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
1answer
224 views

Using managed threads and fibers in CLR

Okay, the following link has a warning that the discussion uses unsupported and undocumented apis. Well I'm trying to use the code sample any way. It mostly works. :( Any ideas about the specific ...
9
votes
2answers
189 views

Why do we need fibers

For Fibers we have got classic example: generating of Fibonacci numbers fib = Fiber.new do x, y = 0, 1 loop do Fiber.yield y x,y = y,x+y end end Why do we need Fibers here? I ...
6
votes
2answers
167 views

Fibers over Threads in D

I'm experimenting with threads and Fibers in D and I was wondering if it is possible to run a Fiber on a different CPU as the main thread is running. And if this is not the case then what would be the ...
6
votes
2answers
629 views

Can Ruby Fibers be Concurrent?

I'm trying to get some speed up in my program and I've been told that Ruby Fibers are faster than threads and can take advantage of multiple cores. I've looked around, but I just can't find how to ...
5
votes
0answers
174 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 ...
4
votes
1answer
279 views

Nokogiri vs Goliath…or, can they get along?

I have a project that needs to parse literally hundreds of thousands of HTML and XML documents. I thought this would be a perfect opportunity to learn Ruby fibers and the new Goliath framework. ...
2
votes
1answer
206 views

State machine in Ruby using Fibers?

I'm trying to get a handle on the new Fiber class in Ruby 1.9 and I read that one of the more common applications for Fibers (and coroutines) is in state machines. Unfortunately my Fiber-fu isn't up ...
2
votes
1answer
182 views

Best way to deal with sleeping in event handlers in a single-threaded API?

I'm using a non-threadsafe event API. wait() is called, and from that call, event handlers are dispatched. I want to be able to, within an event handler, "sleep" for some time. Currently, I have a ...
1
vote
1answer
32 views

Em-synchrony sample code not working as expected

The em-synchrony documentation links to this article which implies that this code with fiber: require 'eventmachine' require 'fiber' require 'em-http-request' def http_get(url) f = Fiber.current ...
1
vote
3answers
73 views

How to Process Items in an Array in Parallel using Ruby (and open-uri)

I am wondering how i can go about opening multiple concurrent connections using open-uri? i THINK I need to use threading or fibers some how but i'm not sure. Example code: def get_doc(url) ...
1
vote
1answer
85 views

Infinite Ruby Fibers?

Is it possible to create 2 Ruby's Fibers that call each other forever? Would Ruby eventually crash with the stack overflow or do the Fibers not consume stack space?
1
vote
2answers
235 views

Fibers in Python

I'm looking for a very simple way to implement fibers in Python. I'm sure there's a really simple way to do it using generators, but my mind is crapping out on me. This isn't for a huge application, ...
1
vote
3answers
311 views

Simple neverblock example doesn't work

I'm trying to do something with "neverblock" and I can't seem to get it to work. What I expect: The blocking sleep shouldn't slow down the whole process. I expected to see 5 times "bla" with basically ...
1
vote
1answer
294 views

Implementing preemptive microthreads using signal handlers and setjmp/longjmp

I want to implement POSIX compliant microthreads in Linux environment. Basic idea is as follows: Using technique described here, assign new stack space for each fiber. Using setitimer, create timer ...
0
votes
0answers
34 views

avoid race condition in async ruby app?

I'm using cramp famework and this action affected by race condition: # encoding: utf-8 class WebsocketAction < Cramp::Websocket on_start :init_client on_finish :disconnected ...
0
votes
1answer
215 views

Designing efficient C++ code for fibers

How do I utilize fibers best in my game code? Should it only be used to manage nonpreemptive context-switches while loading resources (i.e. files from disk)? Or do I allow all types of game entities ...