about summary refs log tree commit homepage
path: root/lib/rainbows/xepoll.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rainbows/xepoll.rb')
-rw-r--r--lib/rainbows/xepoll.rb24
1 files changed, 24 insertions, 0 deletions
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