about summary refs log tree commit homepage
path: root/lib/rainbows/event_machine.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rainbows/event_machine.rb')
-rw-r--r--lib/rainbows/event_machine.rb8
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/rainbows/event_machine.rb b/lib/rainbows/event_machine.rb
index 4d5156e..3837e1f 100644
--- a/lib/rainbows/event_machine.rb
+++ b/lib/rainbows/event_machine.rb
@@ -158,13 +158,17 @@ module Rainbows
     end
 
     module ResponsePipe # :nodoc: all
+      # garbage avoidance, EM always uses this in a single thread,
+      # so a single buffer for all clients will work safely
+      BUF = ''
+
       def initialize(client)
         @client = client
       end
 
       def notify_readable
         begin
-          @client.write(@io.read_nonblock(16384))
+          @client.write(@io.read_nonblock(16384, BUF))
         rescue Errno::EINTR
           retry
         rescue Errno::EAGAIN
@@ -192,7 +196,7 @@ module Rainbows
       def notify_readable
         begin
           data = begin
-            @io.read_nonblock(16384)
+            @io.read_nonblock(16384, BUF)
           rescue Errno::EINTR
             retry
           rescue Errno::EAGAIN