summaryrefslogtreecommitdiffstats
path: root/fnet
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2019-04-21 01:00:23 +0200
committerHenning Baldersheim <balder@yahoo-inc.com>2019-04-22 11:17:48 +0200
commitdbcf0b983e1bf0633a362e83ff89c16362e79fae (patch)
treebbdebd73ab6c55f8b4981c1b6175b962c4270e7f /fnet
parentec48ae56010aad00477263c28943054662f9412c (diff)
Double minimum read/write chunk size to 16k.
Diffstat (limited to 'fnet')
-rw-r--r--fnet/src/vespa/fnet/connection.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/fnet/src/vespa/fnet/connection.h b/fnet/src/vespa/fnet/connection.h
index b52d0147ce1..b4272b91cef 100644
--- a/fnet/src/vespa/fnet/connection.h
+++ b/fnet/src/vespa/fnet/connection.h
@@ -58,9 +58,9 @@ public:
};
enum {
- FNET_READ_SIZE = 8192,
+ FNET_READ_SIZE = 16384,
FNET_READ_REDO = 10,
- FNET_WRITE_SIZE = 8192,
+ FNET_WRITE_SIZE = 16384,
FNET_WRITE_REDO = 10
};