Skip to content

Commit 2ec7f10

Browse files
Merge branch 'dev' into 5.x-document-old-deprecation
2 parents b853d0a + dbbfb5c commit 2ec7f10

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

modules/ROOT/pages/clauses/load-csv.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,7 @@ You can import data from a number of different cloud storages:
175175

176176
* xref:clauses/load-csv.adoc#azure-cloud-storage[Azure Cloud Storage]
177177
* xref:clauses/load-csv.adoc#google-cloud-storage[Google Cloud Storage]
178-
* ref:clauses/load-csv.adoc#aws-s3[AWS S3]
178+
* xref:clauses/load-csv.adoc#aws-s3[AWS S3]
179179

180180
See link:{neo4j-docs-base-uri}/operations-manual/current/backup-restore/restore-dump/#load-dump-cloud-storage[Operations Manual -> Load a dump from a cloud storage] on how to set up access to cloud storages.
181181

modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ label:deprecated[]
201201
----
202202
CREATE DATABASE db OPTIONS { existingDataSeedInstance: ... }
203203
----
204-
| The `CREATE DATABASE` option `existingDataSeedInstance` has been deprecated and replaced with the option link:{neo4j-docs-base-uri}/operations-manual/{page-version}/database-administration/standard-databases/create-database/#manage-databases-create-database-options[`existingDataSeedServer`]. The functionality is unchanged.
204+
| The `CREATE DATABASE` option `existingDataSeedInstance` has been deprecated and replaced with the option link:{neo4j-docs-base-uri}/operations-manual/{page-version}/database-administration/standard-databases/create-databases/#manage-databases-create-database-options[`existingDataSeedServer`]. The functionality is unchanged.
205205
|===
206206

207207
=== Updated features
@@ -239,7 +239,7 @@ label:new[]
239239
----
240240
CREATE DATABASE db OPTIONS { existingDataSeedServer: ... }
241241
----
242-
| The option link:{neo4j-docs-base-uri}/operations-manual/{page-version}/database-administration/standard-databases/create-database/#manage-databases-create-database-options[`existingDataSeedServer`] has been added to `CREATE DATABASE`. The functionality is the same as the deprecated option `existingDataSeedServer`, which this replaces.
242+
| The option link:{neo4j-docs-base-uri}/operations-manual/{page-version}/database-administration/standard-databases/create-databases/#manage-databases-create-database-options[`existingDataSeedServer`] has been added to `CREATE DATABASE`. The functionality is the same as the deprecated option `existingDataSeedServer`, which this replaces.
243243
|===
244244

245245
[[cypher-deprecations-additions-removals-5.24]]

modules/ROOT/pages/functions/vector.adoc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ For more details, see the {link-vector-indexes}#similarity-functions[vector inde
3535
| Both vectors must be of the same dimension.
3636
| Both vectors must be {link-vector-indexes}#indexes-vector-similarity-cosine[*valid*] with respect to cosine similarity.
3737
| The implementation is identical to that of the latest available vector index provider (`vector-2.0`).
38+
| `vector.similarity.cosine()` returns the neighborhood of nodes along with their respective cosine similarity scores, sorted in descending order of similarity.
39+
The similarity score range from `0` and `1`, with scores closer to `1` indicating a higher degree of similarity between the indexed vector and the query vector.
3840

3941
|===
4042

@@ -63,6 +65,8 @@ For more details, see the {link-vector-indexes}#similarity-functions[vector inde
6365
| Both vectors must be of the same dimension.
6466
| Both vectors must be {link-vector-indexes}#indexes-vector-similarity-euclidean[*valid*] with respect to Euclidean similarity.
6567
| The implementation is identical to that of the latest available vector index provider (`vector-2.0`).
68+
| `vector.similarity.euclidean()` returns the neighborhood of nodes along with their respective Euclidean similarity scores, sorted in descending order of similarity.
69+
The similarity score range from `0` and `1`, with scores closer to `1` indicating a higher degree of similarity between the indexed vector and the query vector.
6670

6771
|===
6872

0 commit comments

Comments
 (0)