Sha256: 4402a27500458e073bfadd44904e03473a86df9bbd163927e6c687f4652b22c7

Contents?: true

Size: 1.43 KB

Versions: 7

Compression:

Stored size: 1.43 KB

Contents

# -*- encoding: binary -*-
require 'rainbows/fiber'

# A Fiber-based concurrency model for Ruby 1.9.  This uses a pool of
# Fibers to handle client IO to run the application and the root Fiber
# for scheduling and connection acceptance.
#
# This concurrency model is difficult to use with existing applications,
# lacks third-party support, and is thus NOT recommended.
#
# The pool size is equal to the number of +worker_connections+.
# Compared to the ThreadPool model, Fibers are very cheap in terms of
# memory usage so you can have more active connections.  This model
# supports a streaming "rack.input" with lightweight concurrency.
# Applications are strongly advised to wrap all slow IO objects
# (sockets, pipes) using the Rainbows::Fiber::IO class whenever
# possible.
module Rainbows::FiberPool
  include Rainbows::Fiber::Base

  def worker_loop(worker) # :nodoc:
    init_worker_process(worker)
    pool = []
    worker_connections.times {
      Fiber.new {
        process(Fiber.yield) while pool << Fiber.current
      }.resume # resume to hit Fiber.yield so it waits on a client
    }
    Rainbows::Fiber::Base.setup(self.class, app)

    begin
      schedule do |l|
        fib = pool.shift or break # let another worker process take it
        if io = l.kgio_tryaccept
          fib.resume(io)
        else
          pool << fib
        end
      end
    rescue => e
      Rainbows::Error.listen_loop(e)
    end while Rainbows.cur_alive
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
rainbows-4.3.1 lib/rainbows/fiber_pool.rb
rainbows-4.3.0 lib/rainbows/fiber_pool.rb
rainbows-4.2.0 lib/rainbows/fiber_pool.rb
rainbows-4.1.0 lib/rainbows/fiber_pool.rb
rainbows-4.0.0 lib/rainbows/fiber_pool.rb
rainbows-3.4.0 lib/rainbows/fiber_pool.rb
rainbows-3.3.0 lib/rainbows/fiber_pool.rb