From f9b8a94c90c9cb267c2a1ae8ac7cdcf08d81b8e5 Mon Sep 17 00:00:00 2001 From: Constantin Rack Date: Tue, 24 Nov 2015 09:04:07 +0100 Subject: [PATCH] Problem: out_batch_size has been replaced by ZMQ_TCP_SEND_BUFFER option in cdeec4c1 Solution: remove `out_batch_size` from src/config.hpp --- src/config.hpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/config.hpp b/src/config.hpp index bde83600..e9217c48 100644 --- a/src/config.hpp +++ b/src/config.hpp @@ -59,12 +59,6 @@ namespace zmq // unnecessary network stack traversals. in_batch_size = 8192, - // Maximal batching size for engines with sending functionality. - // So, if there are 10 messages that fit into the batch size, all of - // them may be written by a single 'send' system call, thus avoiding - // unnecessary network stack traversals. - out_batch_size = 8192, - // Maximal delta between high and low watermark. max_wm_delta = 1024,