From 8cbeb662d980f25d3a6a33422c32f53cf263afa9 Mon Sep 17 00:00:00 2001 From: Patrik Nordwall Date: Tue, 27 Sep 2016 13:03:07 +0200 Subject: [PATCH] multi lanes not supported yet --- akka-remote/src/main/resources/reference.conf | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/akka-remote/src/main/resources/reference.conf b/akka-remote/src/main/resources/reference.conf index 447efb3c8b..721d1bad78 100644 --- a/akka-remote/src/main/resources/reference.conf +++ b/akka-remote/src/main/resources/reference.conf @@ -202,12 +202,16 @@ akka { # Level 10 strongly prefer low latency over low CPU consumption. idle-cpu-level = 5 + # WARNING: This feature is not supported yet. Don't use other value than 1. + # It requires more hardening and performance optimizations. # Number of outbound lanes for each outbound association. A value greater than 1 # means that serialization can be performed in parallel for different destination # actors. The selection of lane is based on consistent hashing of the recipient # ActorRef to preserve message ordering per receiver. outbound-lanes = 1 + # WARNING: This feature is not supported yet. Don't use other value than 1. + # It requires more hardening and performance optimizations. # Total number of inbound lanes, shared among all inbound associations. A value # greater than 1 means that deserialization can be performed in parallel for # different destination actors. The selection of lane is based on consistent