From 8e2e8adda8adbadee8ab31cde700b7e486b1154c Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Fri, 4 Feb 2011 18:58:26 -0800 Subject: rename XAcceptEpoll to XEpoll It's too long especially since XEpollThreadPool is planned :> --- lib/rainbows/xepoll.rb | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 lib/rainbows/xepoll.rb (limited to 'lib/rainbows/xepoll.rb') diff --git a/lib/rainbows/xepoll.rb b/lib/rainbows/xepoll.rb new file mode 100644 index 0000000..3a02b46 --- /dev/null +++ b/lib/rainbows/xepoll.rb @@ -0,0 +1,24 @@ +# -*- encoding: binary -*- +# :enddoc: +require 'raindrops' +require 'rainbows/epoll' + +# Edge-triggered epoll concurrency model with blocking accept() in +# a (hopefully) native thread. This is recommended over Epoll for +# Ruby 1.9 users as it can workaround accept()-scalability issues +# on multicore machines. +module Rainbows::XEpoll + include Rainbows::Base + autoload :Client, 'rainbows/xepoll/client' + + def init_worker_process(worker) + super + Rainbows::Epoll.const_set :EP, SleepyPenguin::Epoll.new + Rainbows::Client.__send__ :include, Client + end + + def worker_loop(worker) # :nodoc: + init_worker_process(worker) + Client.run + end +end -- cgit v1.2.3-24-ge0c7