Skip to content

Commit

Permalink
db.index.vector.createNodeIndex replaced by CREATE VECTOR INDEX (#824)
Browse files Browse the repository at this point in the history
  • Loading branch information
parnmatt authored Jan 2, 2024
1 parent e5d902d commit 5bd9bdd
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions modules/ROOT/pages/indexes-for-vector-search.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,13 @@ The procedures and commands for vector indexes are listed in the following table

| Create vector index.
| `+CREATE VECTOR INDEX ...+`
| Create a vector index for the specified label and property with the given vector dimensionality using the given similarity function.
See the xref:indexes-for-search-performance.adoc#indexes-create-indexes[`CREATE INDEX`] command for more details.
| label:new[Introduced in 5.15] Create a vector index for the specified label and property with the given vector dimensionality using the given similarity function.
See the xref:indexes-for-search-performance.adoc#indexes-create-indexes[`CREATE INDEX`] command for more details. Replaces {link-procedures-reference}#procedure_db_index_vector_createNodeIndex[`db.index.vector.createNodeIndex`].

| Create vector index.
| {link-procedures-reference}#procedure_db_index_vector_createNodeIndex[`db.index.vector.createNodeIndex`]
| It is replaced by `CREATE VECTOR INDEX ...`.


| Use vector index.
| {link-procedures-reference}#procedure_db_index_vector_queryNodes[`db.index.vector.queryNodes`]
Expand All @@ -62,15 +67,15 @@ Returns the requested number of approximate nearest neighbor nodes and their sim

| Listing all vector indexes.
| `SHOW VECTOR INDEXES`
| Lists all vector indexes, see the xref:indexes-for-search-performance.adoc#indexes-list-indexes[`SHOW INDEXES`] command for details.
| label:new[Introduced in 5.15] Lists all vector indexes, see the xref:indexes-for-search-performance.adoc#indexes-list-indexes[`SHOW INDEXES`] command for details.

| Set vector property.
| {link-procedures-reference}#procedure_db_create_setNodeVectorProperty[`db.create.setNodeVectorProperty`]
| label:beta[] label:new[Introduced in 5.13] Update a given node property with the given vector in a more space-efficient way than directly using xref:clauses/set.adoc#set-set-a-property[`SET`]. Replaces {link-procedures-reference}#procedure_db_create_setVectorProperty[`db.create.setVectorProperty`].

| Set vector property.
| {link-procedures-reference}#procedure_db_create_setVectorProperty[`db.create.setVectorProperty`]
| label:beta[] label:deprecated[] It is replaced by {link-procedures-reference}#procedure_db_create_setNodeVectorProperty[`db.create.setNodeVectorProperty`]
| label:beta[] label:deprecated[] It is replaced by {link-procedures-reference}#procedure_db_create_setNodeVectorProperty[`db.create.setNodeVectorProperty`].

|===

Expand Down

0 comments on commit 5bd9bdd

Please sign in to comment.