summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon MacMullen <simon@rabbitmq.com>2010-12-02 12:39:32 +0000
committerSimon MacMullen <simon@rabbitmq.com>2010-12-02 12:39:32 +0000
commit7d68ac0e63c3be4571591ef8dfdf6a15da15801d (patch)
treef42d7d036fd4e2480a32049696a6c2fb62a9e776
parented6477ab5915428188c2b0fbd5b334c1cddce5de (diff)
downloadrabbitmq-server-bug23532.tar.gz
Tone down the claims in the optimisation comment.bug23532
-rw-r--r--src/rabbit_writer.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rabbit_writer.erl b/src/rabbit_writer.erl
index 9c32c272..12b34bcd 100644
--- a/src/rabbit_writer.erl
+++ b/src/rabbit_writer.erl
@@ -188,8 +188,8 @@ assemble_frames(Channel, MethodRecord, Content, FrameMax, Protocol) ->
%% We optimise delivery of small messages. Content-bearing methods
%% require at least three frames. Small messages always fit into
%% that. We hand their frames to the Erlang network functions in one
-%% go, which leads to more efficient processing in the runtime and a
-%% greater chance of coalescing into fewer TCP packets.
+%% go, which may lead to somewhat more efficient processing in the
+%% runtime and a greater chance of coalescing into fewer TCP packets.
%%
%% By contrast, for larger messages, split across many frames, we want
%% to allow interleaving of frames on different channels. Hence we