|
1 | 1 | :description: This chapter describes how to use full-text indexes, to enable full-text search. |
2 | 2 |
|
3 | | -[[administration-indexes-fulltext-search]] |
| 3 | +[[indexes-fulltext-search]] |
4 | 4 | = Full-text search index |
5 | 5 |
|
6 | 6 | [abstract] |
@@ -40,13 +40,13 @@ In contrast to xref::indexes-for-search-performance.adoc[other indexes], a full- |
40 | 40 |
|
41 | 41 | * applied to more than one label. |
42 | 42 | * applied to more than one relationship type. |
43 | | -* applied to more than one property at a time (similar to a xref::indexes-for-search-performance.adoc#administration-indexes-create-a-composite-range-index-for-nodes[_composite index_]) but with an important difference: |
| 43 | +* applied to more than one property at a time (similar to a xref::indexes-for-search-performance.adoc#indexes-create-a-composite-range-index-for-nodes[_composite index_]) but with an important difference: |
44 | 44 | While a composite index applies only to entities that match the indexed label and _all_ of the indexed properties, full-text index will index entities that have at least one of the indexed labels or relationship types, and at least one of the indexed properties. |
45 | 45 |
|
46 | 46 | For information on how to configure full-text indexes, refer to link:{neo4j-docs-base-uri}/operations-manual/{page-version}/performance/index-configuration#index-configuration-fulltext[Operations Manual -> Indexes to support full-text search]. |
47 | 47 |
|
48 | 48 |
|
49 | | -[[administration-indexes-fulltext-search-manage]] |
| 49 | +[[indexes-fulltext-search-manage]] |
50 | 50 | == Full-text search procedures |
51 | 51 |
|
52 | 52 | Full-text indexes are managed through commands and used through built-in procedures, see link:{neo4j-docs-base-uri}/operations-manual/{page-version}/reference/procedures[Operations Manual -> Procedures] for a complete reference. |
@@ -89,12 +89,12 @@ Create a relationship full-text index for the given relationship types and prope |
89 | 89 |
|
90 | 90 | | Listing all full-text indexes. |
91 | 91 | | `SHOW FULLTEXT INDEXES` |
92 | | -| Lists all full-text indexes, see xref::indexes-for-search-performance.adoc#administration-indexes-list-indexes[the `SHOW INDEXES` command] for details. |
| 92 | +| Lists all full-text indexes, see xref::indexes-for-search-performance.adoc#indexes-list-indexes[the `SHOW INDEXES` command] for details. |
93 | 93 |
|
94 | 94 | |=== |
95 | 95 |
|
96 | 96 |
|
97 | | -[[administration-indexes-fulltext-search-create-and-configure]] |
| 97 | +[[indexes-fulltext-search-create-and-configure]] |
98 | 98 | == Create and configure full-text indexes |
99 | 99 |
|
100 | 100 | Full-text indexes are created with the `CREATE FULLTEXT INDEX` command. |
@@ -247,7 +247,7 @@ Added 1 index. |
247 | 247 | ====== |
248 | 248 |
|
249 | 249 |
|
250 | | -[[administration-indexes-fulltext-search-query]] |
| 250 | +[[indexes-fulltext-search-query]] |
251 | 251 | == Query full-text indexes |
252 | 252 |
|
253 | 253 | Full-text indexes will, in addition to any exact matches, also return _approximate_ matches to a given query. |
@@ -375,7 +375,7 @@ RETURN node.title, node.description, score |
375 | 375 | A complete description of the Lucene query syntax can be found in the link:https://lucene.apache.org/core/8_2_0/queryparser/org/apache/lucene/queryparser/classic/package-summary.html#package.description[Lucene documentation]. |
376 | 376 |
|
377 | 377 |
|
378 | | -[[administration-indexes-fulltext-search-text-array-properties]] |
| 378 | +[[indexes-fulltext-search-text-array-properties]] |
379 | 379 | == Handling of Text Array properties |
380 | 380 |
|
381 | 381 | If the indexed property contains a text array, each element of this array is analyzed independently and all produced terms are associated with the same property name. |
@@ -443,10 +443,10 @@ RETURN |
443 | 443 | ====== |
444 | 444 |
|
445 | 445 |
|
446 | | -[[administration-indexes-fulltext-search-drop]] |
| 446 | +[[indexes-fulltext-search-drop]] |
447 | 447 | == Drop full-text indexes |
448 | 448 |
|
449 | | -A full-text node index is dropped by using the xref::indexes-for-search-performance.adoc#administration-indexes-drop-an-index[same command as for other indexes], `DROP INDEX`. |
| 449 | +A full-text node index is dropped by using the xref::indexes-for-search-performance.adoc#indexes-drop-an-index[same command as for other indexes], `DROP INDEX`. |
450 | 450 |
|
451 | 451 |
|
452 | 452 | .+DROP INDEX+ |
|
0 commit comments