File tree Expand file tree Collapse file tree 4 files changed +9
-6
lines changed Expand file tree Collapse file tree 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
229229-----------------------------
230230
231231The 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.
233234
234- .. note:: Atlas Search Index Management is Asynchronous
235+ .. note:: Atlas Search and Vector Search Index Management is Asynchronous
235236
236237 The {+php-library+} manages Atlas Search indexes asynchronously. The
237238 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:
4040- ``MongoDB\Collection::updateSearchIndex()``
4141- ``MongoDB\Collection::dropSearchIndex()``
4242
43- .. note:: Search and Vector Search Index Management is Asynchronous
43+ .. note:: Atlas Search and Vector Search Index Management is Asynchronous
4444
4545 The {+php-library+} manages Atlas Search and Vector Search indexes
4646 asynchronously. The library methods described in the following
@@ -77,7 +77,7 @@ Search index:
7777 :start-after: start-create-vector-index
7878 :end-before: end-create-vector-index
7979
80- The following code example shows how to create Search and
80+ The following code example shows how to create Atlas Search and
8181Vector Search indexes in one call:
8282
8383.. literalinclude:: /includes/indexes/indexes.php
Original file line number Diff line number Diff line change @@ -52,7 +52,8 @@ Parameters
5252 - string
5353 - | Name of the search index to create.
5454 | 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``.
5657
5758 * - type
5859 - string
Original file line number Diff line number Diff line change @@ -39,7 +39,8 @@ Parameters
3939
4040 An optional ``name`` string field specifies the name of the search index to
4141 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``.
4344
4445 An optional ``type`` string field specifies the type of search index to
4546 create. Accepted values are ``'search'`` and ``'vectorSearch'``. If
You can’t perform that action at this time.
0 commit comments