From 68645fc60a2b111e0df03d8092f4f6556f38fcd4 Mon Sep 17 00:00:00 2001 From: Reneta Popova Date: Mon, 21 Feb 2022 11:33:14 +0000 Subject: [PATCH] Add a note to the access mode feature --- modules/ROOT/pages/actions/transaction-configuration.adoc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/modules/ROOT/pages/actions/transaction-configuration.adoc b/modules/ROOT/pages/actions/transaction-configuration.adoc index 61c090a..047486a 100644 --- a/modules/ROOT/pages/actions/transaction-configuration.adoc +++ b/modules/ROOT/pages/actions/transaction-configuration.adoc @@ -6,10 +6,13 @@ For any transaction-initiating request (such as `/tx` or `tx/commit`), you can provide configuration options that apply for the duration of the whole transaction. == Access Mode -To ensure that efficient load balancing across a cluster, it is important to label transactions that only contain `READ` statements with a `READ` access mode. + +To ensure efficient load balancing across a cluster, it is important to label transactions that only contain `READ` statements with a `READ` access mode. This can be done by adding an `access-mode` header to the request, with a value of `READ`. +This feature was introduced in Neo4j version 4.4.4. + [WARNING] ==== If an `access-mode` configuration has *not* been provided, the default value is `WRITE`.