Tagged Questions
5
votes
0answers
167 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
537 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 ...
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
127 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, ...
1
vote
2answers
264 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
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 ...
0
votes
2answers
50 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
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 ...