Skip to content

Commit e02c3a2

Browse files
better wording
1 parent 2291a4c commit e02c3a2

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

modules/ROOT/pages/indexes/search-performance-indexes/managing-indexes.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ In those cases, nothing needs to be specified and the `OPTIONS` map should be om
4141
Creating an index requires link:{neo4j-docs-base-uri}/operations-manual/{page-version}/authentication-authorization/database-administration/#access-control-database-administration-index[the `CREATE INDEX` privilege].
4242

4343
[NOTE]
44-
An index cannot be queried if its `state` is `"POPULATING"` (i.e., if it was just created).
45-
To confirm the `state` of an index (whether it is `"ONLINE"` or `"POPULATING"`), run the following command: `SHOW INDEXES YIELD *`.
44+
An index cannot be used while its `state` is `POPULATING`, which occurs immediately after it is created.
45+
To check the `state` of an index -- whether it is `ONLINE` (usable) or `POPULATING`(still being built) -- run the following command: `SHOW INDEXES YIELD *`.
4646

4747
[[create-range-index]]
4848
=== Create a range index

modules/ROOT/pages/indexes/semantic-indexes/full-text-indexes.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,8 +138,8 @@ Unlike xref:indexes/search-performance-indexes/managing-indexes.adoc[search-perf
138138
To query a full-text index, use either the link:{neo4j-docs-base-uri}/operations-manual/{page-version}/reference/procedures/#procedure_db_index_fulltext_querynodes[`db.index.fulltext.queryNodes`] or the link:{neo4j-docs-base-uri}/operations-manual/{page-version}/reference/procedures/#procedure_db_index_fulltext_relationships[`db.index.fulltext.queryRelationships`] procedure.
139139

140140
[NOTE]
141-
An index cannot be queried if its `state` is `"POPULATING"` (i.e., if it was just created).
142-
To confirm the `state` of a full-text index (whether it is `"ONLINE"` or `"POPULATING"`), run the following command: `SHOW FULLTEXT INDEXES YIELD *`.
141+
An index cannot be used while its `state` is `POPULATING`, which occurs immediately after it is created.
142+
To check the `state` of a full-text index -- whether it is `ONLINE` (usable) or `POPULATING`(still being built) -- run the following command: `SHOW FULLTEXT INDEXES YIELD *`.
143143

144144
This query uses the `db.index.fulltext.queryNodes` to look for `nils` in the previously created full-text index `namesAndTeams`:
145145

modules/ROOT/pages/indexes/semantic-indexes/vector-indexes.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,8 +197,8 @@ Default value::: `100`
197197
To query a node vector index, use the link:{neo4j-docs-base-uri}/operations-manual/{page-version}/reference/procedures/#procedure_db_index_vector_queryNodes[`db.index.vector.queryNodes`] procedure.
198198

199199
[NOTE]
200-
An index cannot be queried if its `state` is `"POPULATING"` (i.e., if it was just created).
201-
To confirm the `state` of a vector index (whether it is `"ONLINE"` or `"POPULATING"`), run the following command: `SHOW VECTOR INDEXES YIELD *`.
200+
An index cannot be used while its `state` is `POPULATING`, which occurs immediately after it is created.
201+
To check the `state` of a vector index -- whether it is `ONLINE` (usable) or `POPULATING`(still being built) -- run the following command: `SHOW VECTOR INDEXES YIELD *`.
202202

203203
.Signature for `db.index.vector.queryNodes`
204204
[source,syntax]

0 commit comments

Comments
 (0)