From ad821f70a2488a91f2be1ac53cb2e64f50743989 Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Tue, 28 Sep 2010 17:40:01 -0700 Subject: start using kgio library It removes the burden of byte slicing and setting file descriptor flags. In some cases, we can remove unnecessary peeraddr calls, too. --- lib/rainbows/rev/core.rb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'lib/rainbows/rev/core.rb') diff --git a/lib/rainbows/rev/core.rb b/lib/rainbows/rev/core.rb index aecd5e8..2273b24 100644 --- a/lib/rainbows/rev/core.rb +++ b/lib/rainbows/rev/core.rb @@ -7,12 +7,11 @@ require 'rainbows/rev/heartbeat' module Rainbows module Rev class Server < ::Rev::IO - include Rainbows::Acceptor # CL and MAX will be defined in the corresponding worker loop def on_readable return if CONN.size >= MAX - io = accept(@_io) and CL.new(io).attach(LOOP) + io = @_io.kgio_tryaccept and CL.new(io).attach(LOOP) end end # class Server -- cgit v1.2.3-24-ge0c7