File tree 4 files changed +9
-6
lines changed 4 files changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -229,9 +229,10 @@ Atlas Search Index Management
229
229
-----------------------------
230
230
231
231
The following sections contain code examples that describe how to manage
232
- :atlas:`Atlas Search indexes </atlas-search/manage-indexes/>`.
232
+ :atlas:`Atlas Search </atlas-search/manage-indexes/>` and :atlas:`Vector
233
+ Search </atlas-vector-search/vector-search-type/>` indexes.
233
234
234
- .. note:: Atlas Search Index Management is Asynchronous
235
+ .. note:: Atlas Search and Vector Search Index Management is Asynchronous
235
236
236
237
The {+php-library+} manages Atlas Search indexes asynchronously. The
237
238
library methods described in the following sections return the server
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ to manage your Atlas Search and Vector Search indexes:
40
40
- ``MongoDB\Collection::updateSearchIndex()``
41
41
- ``MongoDB\Collection::dropSearchIndex()``
42
42
43
- .. note:: Search and Vector Search Index Management is Asynchronous
43
+ .. note:: Atlas Search and Vector Search Index Management is Asynchronous
44
44
45
45
The {+php-library+} manages Atlas Search and Vector Search indexes
46
46
asynchronously. The library methods described in the following
@@ -77,7 +77,7 @@ Search index:
77
77
:start-after: start-create-vector-index
78
78
:end-before: end-create-vector-index
79
79
80
- The following code example shows how to create Search and
80
+ The following code example shows how to create Atlas Search and
81
81
Vector Search indexes in one call:
82
82
83
83
.. literalinclude:: /includes/indexes/indexes.php
Original file line number Diff line number Diff line change @@ -52,7 +52,8 @@ Parameters
52
52
- string
53
53
- | Name of the search index to create.
54
54
| You cannot create multiple indexes with the same name on a single
55
- collection. If you do not specify a name, the index is named ``default``.
55
+ collection. If you do not specify a name, the default index
56
+ name is ``default``.
56
57
57
58
* - type
58
59
- string
Original file line number Diff line number Diff line change @@ -39,7 +39,8 @@ Parameters
39
39
40
40
An optional ``name`` string field specifies the name of the search index to
41
41
create. You cannot create multiple indexes with the same name on a single
42
- collection. If you do not specify a name, the index is named "default".
42
+ collection. If you do not specify a name, the default index name is
43
+ ``default``.
43
44
44
45
An optional ``type`` string field specifies the type of search index to
45
46
create. Accepted values are ``'search'`` and ``'vectorSearch'``. If
You can’t perform that action at this time.
0 commit comments