Skip to content

Commit 3bc741a

Browse files
More correct wording for clustering jargon (#448)
1 parent b711d15 commit 3bc741a

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

go-manual/modules/ROOT/pages/performance.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ Especially if the server's latency is high, a low fetch size may deteriorate per
260260
[[read-mode]]
261261
== Route read queries to cluster readers
262262

263-
In a cluster, *route read queries to link:{neo4j-docs-base-uri}/operations-manual/current/clustering/introduction/#clustering-secondary-mode[secondary nodes]*. You do this by:
263+
In a cluster, *route read queries to any reader node*. You do this by:
264264

265265
- using the xref:query-simple.adoc#_request_routing[`ExecuteQueryWithReadersRouting()` configuration callback in `ExecuteQuery()`] calls
266266
- using `ExecuteRead()` instead of `ExecuteWrite()` (for managed transactions)

java-manual/modules/ROOT/pages/performance.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ for (int i=0; i<1000; i++) {
7171
[[read-mode]]
7272
== Route read queries to cluster readers
7373

74-
In a cluster, *route read queries to link:{neo4j-docs-base-uri}/operations-manual/current/clustering/introduction/#clustering-secondary-mode[secondary nodes]*. You do this by:
74+
In a cluster, *route read queries to any reader node*. You do this by:
7575

7676
- using the method `.withRouting(RoutingControl.READ)` in xref:query-simple.adoc#_request_routing[`Driver.executableQuery()`] calls
7777
- using `Session.executeRead()` instead of `Session.executeWrite()` (for xref:transactions.adoc#managed-transactions[managed transactions])

javascript-manual/modules/ROOT/pages/performance.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ for(let i=0; i<1000; i++) {
6868
[[read-mode]]
6969
== Route read queries to cluster readers
7070

71-
In a cluster, *route read queries to link:{neo4j-docs-base-uri}/operations-manual/current/clustering/introduction/#clustering-secondary-mode[secondary nodes]*. You do this by:
71+
In a cluster, *route read queries to any reader node*. You do this by:
7272

7373
- setting the xref:query-simple.adoc#_request_routing[`routing: READ` as configuration in `Driver.executeQuery()`] calls
7474
- using `Session.executeRead()` instead of `Session.executeWrite()` (for managed transactions)

python-manual/modules/ROOT/pages/performance.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ Especially if the server's latency is high, a low fetch size may deteriorate per
218218
[[read-mode]]
219219
== Route read queries to cluster readers
220220

221-
In a cluster, *route read queries to link:{neo4j-docs-base-uri}/operations-manual/current/clustering/introduction/#clustering-secondary-mode[secondary nodes]*. You do this by:
221+
In a cluster, *route read queries to any reader node*. You do this by:
222222

223223
- specifying `routing_="r"` in a xref:query-simple.adoc#_request_routing[`Driver.execute_query()`] call
224224
- using `Session.execute_read()` instead of `Session.execute_write()` (for managed transactions)

0 commit comments

Comments
 (0)