Fibers are primitives for implementing light weight cooperative concurrency in Ruby. Fibers appeared in Ruby 1.9.

learn more… | top users | synonyms

5
votes
1answer
55 views

What is the point of Fibers in Ruby?

I don't understand how the below: counts = Hash.new(0) File.foreach("testfile") do |line| line.scan(/\w+/) do |word| word = word.downcase counts[word] += 1 end end ...
0
votes
0answers
46 views

fibers in em-synchrony

I'm having trouble understanding wrapping Fibers around ActiveRecord query inside EM-Synchrony. require 'rubygems' require 'benchmark' require 'em-synchrony' require 'mysql2' require ...
0
votes
0answers
37 views

Rails Savon and Fiber

I am using Savon gem to call soap API and this is my code : bids = BidsPackage.find(params[:packageid]) fiber = Fiber.new { client = Savon.client(wsdl: ...
2
votes
1answer
46 views

Strange behavior with Thread and Fiber

This code: Fiber.new do Thread.current['a'] = 5 p Thread.current.object_id p Thread.current['a'] Fiber.new do p Thread.current.object_id p Thread.current['a'] end.resume p ...
0
votes
1answer
32 views

How many Ruby Fibers can I use on Heroku?

I'm experimenting with "async rails", in order to help ease the pain of using slow 3rd-party services. Gemfile gem 'eventmachine' gem 'rack-fiber_pool', :require => 'rack/fiber_pool' gem ...
2
votes
2answers
105 views

Meteor isn't working on Windows7 64 bit

I am just trying out Meteor on my Windows 7 enterprise 64 bit box. I installed it via MSI from http://win.meteor.com, rebooted the machine and in command prompt (administrator), did the following: ...
1
vote
1answer
15 views

Ruby: Get Fiber parent

Is it possible to retrieve the fiber which created the current fiber? It would suffice if I could get this information upon creation of a new Fiber. Monkey-patching Fiber#new doesn't work, as calling ...
1
vote
3answers
172 views

Client Side Implementation of Fibers in JavaScript.

AFAIK meteorjs uses node-fibers, but their github page states that it is server side & v8 only (or is it not ?). How does meteorjs implement nonblocking, synchronous like api on the client side? ...
4
votes
1answer
309 views

How fibers can exist in Java [closed]

I know that my question is more academic than a real issue. In most cases a thread implementation with Fiber-like logic would be OK. But is there any way to implement Fibers as they are described in ...
6
votes
2answers
227 views

Implementing a synchronization barrier in Ruby

I'm trying to "replicate" the behaviour of CUDA's __synchtreads() function in Ruby. Specifically, I have a set of N threads that need to execute some code, then all wait on each other at mid-point in ...
8
votes
2answers
320 views

Consequences of Ruby's fiber 4kB stack size

Fibers are a relatively new concept to me. I'm aware that each fiber's stack size is limited to 4kB and I keep reading that I should "beware" of this. What exactly are the real world consequences of ...
1
vote
1answer
60 views

Ruby running process in the background

I am attempting to write a small console application to play mp3s. The mp3 playing will be handled by an external binary, say mpg123, whilst the playback control, playlists etc will be implemented as ...
3
votes
1answer
494 views

Waiting for async calls with EventMachine and Ruby fibers

I'm running this code snippet under Ruby 1.9.2: require "eventmachine" require "fiber" EM.run do fiber = Fiber.new do current_fiber = Fiber.current EM.add_timer(2) do print "B" ...
2
votes
1answer
172 views

Replace Ruby IO libraries with async versions + fibers

Is it possible to replace all ruby IO clases with different implementation, that uses reactor and fibers behind the scene? I mean that in fact all libraries, that uses native ruby IO will work as ...
1
vote
1answer
492 views

EventMachine with em-synchrony I need to correctly throttle my http requests

I have a consumer which pulls messages off of a queue via an evented subscription. It takes those messages and then connects with a rather slow http interface. I have a worker pool of 8 and once ...
2
votes
0answers
167 views

How to use Rack::FiberPool and EventMachine for JRuby/Rails app on Tomcat?

I have a JRuby/Rails app using Rack::FiberPool and EventMachine. And I have some event-based action controller: class TwitterController < ApllicationController def tweets fiber = ...
1
vote
0answers
292 views

Ruby 1.9.3-p140 - Maximum number of threads in a Ruby program?

I'm playing with Thread and I discovered that I cannot run 10000 threads. It gives me the following error: threading.rb:23:in `initialize': can't create Thread (35) (ThreadError) ...
2
votes
2answers
114 views

Ruby 1.9.3-p140 - Using Thread - how to wait for all results to come out from threads?

I'm trying to figure out a good way to wait for all threads to be executed before the main thread finishes. How can I do that in the following code? threads = [] counter = 1000 lines = ...
0
votes
1answer
53 views

Stop evenmachine after all data loaded with many fibers

I tried get data from rest api using http requests and evenmachine. For this use em-net-http, fibers(ruby1.9.2p290). My pseudocode look like this: EM.run do Fiber.new do ...
2
votes
0answers
77 views

How to set Node.js fibers blocking

I'm trying to create a more synchronized db module using node-mongodb-native. Currently stuck on fiberizing a db.open Any suggestions? thanks.
0
votes
0answers
111 views

Ruby Fiber.resume stuck when using Mysql2::EM::Client

I'm unable to resume a Fiber passing in the result of my Mysql query from the Mysql2 gem. When I pass in a static text string into Fiber.resume it seems to work. The following doesn't work: def ...
0
votes
1answer
196 views

Goliath breaks em-synchrony/em-hiredis when multiple with_api() tests are called in one RSpec suite

I'm just experiencing weird behavior while testing an Goliath API with RSpec. One of my tests looks like this: require 'helper' describe Scales::Dispatch do it "should return a 404 if resource ...
2
votes
1answer
388 views

Ways to implement CPU bound tasks in nodejs

I am using nodejs for a web server which decodes the GET params and returns data in some encoded format. The decode/encode are done using the crypto module of nodejs, which seems to be synchronous. ...
9
votes
5answers
4k views

Which would be better for concurrent tasks on node.js? Fibers? Web-workers? or Threads?

I stumbled over node.js sometime ago and like it a lot. But soon I found out that it lacked badly the ability to perform CPU-intensive tasks. So, I started googling and got these answers to solve the ...
1
vote
1answer
88 views

What to do after quitting in the middle of a fiber

Once I am done in the middle of a Fiber instance fiber, i.e., I yielded from it without completing it, and I am not using fiber any more, what should I do with it? Should I explicitly destroy it, or ...
2
votes
1answer
406 views

Ruby Fibers and faye

I have simple script with EventMachine, Fibers and faye require "faye" require "em-synchrony" require "hiredis" require 'redis' require 'redis/connection/synchrony' faye = Faye::Client.new ...
18
votes
2answers
2k 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 ...
1
vote
1answer
457 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 ...
14
votes
1answer
621 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 issue ...
1
vote
3answers
434 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) ...
7
votes
2answers
316 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 ...
1
vote
1answer
177 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?
5
votes
0answers
285 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
402 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. ...
1
vote
2answers
645 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, ...
2
votes
1answer
259 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 ...
6
votes
2answers
2k 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 ...
1
vote
3answers
539 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 ...
2
votes
1answer
308 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 ...
2
votes
1answer
487 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
1answer
269 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 ...