Skip to content

Commit 51437ee

Browse files
committed
Renaming overview.adoc to index (neo4j#1353)
1 parent c0a2a3f commit 51437ee

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

modules/ROOT/content-nav.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -98,11 +98,11 @@
9898
9999
* xref:genai-integrations.adoc[]
100100
* xref:indexes/index.adoc[]
101-
** xref:indexes/search-performance-indexes/overview.adoc[]
101+
** xref:indexes/search-performance-indexes/index.adoc[]
102102
*** xref:indexes/search-performance-indexes/managing-indexes.adoc[]
103103
*** xref:indexes/search-performance-indexes/using-indexes.adoc[]
104104
*** xref:indexes/search-performance-indexes/index-hints.adoc[]
105-
** xref:indexes/semantic-indexes/overview.adoc[]
105+
** xref:indexes/semantic-indexes/index.adoc[]
106106
*** xref:indexes/semantic-indexes/full-text-indexes.adoc[]
107107
*** xref:indexes/semantic-indexes/vector-indexes.adoc[]
108108
** xref:indexes/syntax.adoc[]

modules/ROOT/pages/clauses/delete.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ DETACH DELETE n
142142
Deleted 3 nodes, deleted 1 relationship
143143
----
144144

145-
`DETACH DELETE` is useful when experimenting with small example datasets, but it is not suitable for deleting large amounts of data, nor does it delete xref:indexes/search-performance-indexes/overview.adoc[indexes] and xref:constraints/index.adoc[constraints].
145+
`DETACH DELETE` is useful when experimenting with small example datasets, but it is not suitable for deleting large amounts of data, nor does it delete xref:indexes/search-performance-indexes/index.adoc[indexes] and xref:constraints/index.adoc[constraints].
146146

147147
To delete large amounts of data without deleting indexes and constraints, use xref::subqueries/subqueries-in-transactions.adoc#delete-with-call-in-transactions[CALL subqueries in transactions] instead.
148148

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ Added 4 nodes, Set 4 properties, Added 4 labels
348348

349349
[NOTE]
350350
`MERGE` queries using dynamic values may not be as performant as those using static values.
351-
This is because the xref:planning-and-tuning/execution-plans.adoc[Cypher planner] uses statically available information when planning queries to determine whether to use an xref:indexes/search-performance-indexes/overview.adoc[index] or not, and this is not possible when using dynamic values.
351+
This is because the xref:planning-and-tuning/execution-plans.adoc[Cypher planner] uses statically available information when planning queries to determine whether to use an xref:indexes/search-performance-indexes/index.adoc[index] or not, and this is not possible when using dynamic values.
352352
For more information, see xref:clauses/merge.adoc#dynamic-merge-caveats[`MERGE` using dynamic node labels and relationship types -> Performance caveats].
353353

354354
=== Import compressed CSV files

modules/ROOT/pages/clauses/match.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -640,7 +640,7 @@ RETURN relationshipType, count(r) AS relationshipCount
640640
=== Performance caveats
641641

642642
`MATCH` queries using dynamic values may not be as performant as those using static values.
643-
This is because the xref:planning-and-tuning/execution-plans.adoc[Cypher planner] uses statically available information when planning queries to determine whether to use an xref:indexes/search-performance-indexes/overview.adoc[index] or not, and this is not possible when using dynamic values.
643+
This is because the xref:planning-and-tuning/execution-plans.adoc[Cypher planner] uses statically available information when planning queries to determine whether to use an xref:indexes/search-performance-indexes/index.adoc[index] or not, and this is not possible when using dynamic values.
644644

645645
As a result, `MATCH` queries using dynamic values cannot leverage xref:planning-and-tuning/operators/operators-detail.adoc#leaf-operators[index scans or seeks] and must instead use the xref:planning-and-tuning/operators/operators-detail.adoc#query-plan-all-nodes-scan[`AllNodesScan`] operator, which reads all nodes from the node store and is therefore more costly.
646646

modules/ROOT/pages/clauses/merge.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -742,7 +742,7 @@ RETURN greta.name AS name, labels(greta) AS labels, type(rel) AS relType, collec
742742
=== Performance caveats
743743

744744
`MERGE` queries that use dynamic values may not be as performant as those using static values.
745-
This is because the xref:planning-and-tuning/execution-plans.adoc[Cypher planner] uses statically available information when planning queries to determine whether to use an xref:indexes/search-performance-indexes/overview.adoc[index] or not, and this is not possible when using dynamic values.
745+
This is because the xref:planning-and-tuning/execution-plans.adoc[Cypher planner] uses statically available information when planning queries to determine whether to use an xref:indexes/search-performance-indexes/index.adoc[index] or not, and this is not possible when using dynamic values.
746746

747747
As a result, `MERGE` queries with dynamic values cannot leverage xref:planning-and-tuning/operators/operators-detail.adoc#leaf-operators[index scans or seeks] and must instead use the xref:planning-and-tuning/operators/operators-detail.adoc#query-plan-all-nodes-scan[`AllNodesScan`] operator, which reads all nodes from the node store and is therefore more costly.
748748

modules/ROOT/pages/indexes/index.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Once an index has been created, it will be automatically populated and updated b
99

1010
Neo4j supports two categories of indexes:
1111

12-
- xref:indexes/search-performance-indexes/overview.adoc[Search-performance indexes], for speeding up data retrieval based on _exact_ matches.
12+
- xref:indexes/search-performance-indexes/index.adoc[Search-performance indexes], for speeding up data retrieval based on _exact_ matches.
1313
This category includes range, text, point, and token lookup indexes.
14-
- xref:indexes/semantic-indexes/overview.adoc[Semantic indexes], for _approximate_ matches and to compute similarity scores between a query string and the matching data.
14+
- xref:indexes/semantic-indexes/index.adoc[Semantic indexes], for _approximate_ matches and to compute similarity scores between a query string and the matching data.
1515
This category includes full-text and vector indexes.
File renamed without changes.
File renamed without changes.

modules/ROOT/pages/queries/basic.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -902,5 +902,5 @@ DETACH DELETE n
902902
----
903903

904904
[NOTE]
905-
`DETACH DELETE` is not suitable for deleting large amounts of data, nor does it delete xref:indexes/search-performance-indexes/overview.adoc[indexes] and xref:constraints/index.adoc[constraints].
905+
`DETACH DELETE` is not suitable for deleting large amounts of data, nor does it delete xref:indexes/search-performance-indexes/index.adoc[indexes] and xref:constraints/index.adoc[constraints].
906906
For more information, and alternatives to `DETACH DELETE`, see xref:clauses/delete.adoc#delete-all-nodes-and-relationships[`DELETE` -> Delete all nodes and relationships].

0 commit comments

Comments
 (0)