diff --git a/go-manual/modules/ROOT/pages/transactions.adoc b/go-manual/modules/ROOT/pages/transactions.adoc index 8fb13e3c..e2758586 100644 --- a/go-manual/modules/ROOT/pages/transactions.adoc +++ b/go-manual/modules/ROOT/pages/transactions.adoc @@ -462,7 +462,10 @@ session := driver.NewSession(ctx, neo4j.SessionConfig{ }) ---- -Do not rely on the link:{neo4j-docs-base-uri}/cypher-manual/current/clauses/use/[`USE`] Cypher clause for database selection with the driver. +[TIP] +Specifying the database through the configuration method is preferred over the link:{neo4j-docs-base-uri}/cypher-manual/current/clauses/use/[`USE`] Cypher clause. +If the server runs on a cluster, queries with `USE` require server-side routing to be enabled. +Queries may also take longer to execute as they may not reach the right cluster member at the first attempt, and need to be routed to one containing the requested database. === Request routing