Skip to content

Commit 518264b

Browse files
authored
DOCSP-45054: search index type (#580)
* DOCSP-45054: search index type * MW small fix
1 parent 663bde2 commit 518264b

File tree

5 files changed

+474
-52
lines changed

5 files changed

+474
-52
lines changed

snooty.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ toc_landing_pages = [
88
"/fundamentals/crud/write-operations/update-many",
99
"/fundamentals/authentication",
1010
"/upgrade",
11-
"/fundamentals/database-collection"
11+
"/fundamentals/database-collection",
12+
"/fundamentals/indexes",
1213
]
1314
name = "csharp"
1415
title = "C#/.NET Driver"

source/fundamentals/indexes.txt

Lines changed: 4 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ Indexes
1818
:depth: 2
1919
:class: singlecol
2020

21+
.. toctree::
22+
23+
Atlas Search & Vector Search Indexes </fundamentals/indexes/search-indexes>
24+
2125
Overview
2226
--------
2327

@@ -199,57 +203,6 @@ To learn more, see
199203
:manual:`Clustered Indexes </reference/method/db.createCollection/#std-label-db.createCollection.clusteredIndex>` and
200204
:manual:`Clustered Collections </core/clustered-collections>` in the Server manual.
201205

202-
.. _search-indexes:
203-
204-
Atlas Search Indexes
205-
~~~~~~~~~~~~~~~~~~~~
206-
207-
The Atlas Search feature enables you to perform full-text searches on collections hosted
208-
on MongoDB Atlas. The indexes specify the behavior of the search and which fields to
209-
index.
210-
211-
To learn more about MongoDB Atlas Search, see the :atlas:`Atlas Search Indexes </atlas-search/atlas-search-overview/#fts-indexes>`
212-
documentation.
213-
214-
.. note::
215-
216-
The Atlas Search Index management methods run asynchronously. The
217-
driver methods can return before confirming that they ran
218-
successfully. To determine the current status of the indexes, call the
219-
`IMongoSearchIndexManager.List() <{+new-api-root+}/MongoDB.Driver/MongoDB.Driver.Search.IMongoSearchIndexManager.List.html>`__ method.
220-
221-
The following sections contain links to tutorials that demonstrate how to create and
222-
interact with Atlas Search indexes.
223-
224-
Create a Search Index
225-
+++++++++++++++++++++
226-
227-
Before you can perform a search on an Atlas collection, you must first
228-
create an Atlas Search index on the collection. To learn how to create an Atlas Search
229-
index using the {+driver-short+}, see :atlas:`Create an Atlas Search Index </atlas-search/create-index/>`
230-
in the Atlas manual and select :guilabel:`C#` from the language dropdown.
231-
232-
List Search Indexes
233-
+++++++++++++++++++
234-
235-
To learn how to view a list of your Atlas Search indexes using the {+driver-short+}, see
236-
:atlas:`View an Atlas Search Index </atlas-search/view-index/>` in the Atlas manual
237-
and select :guilabel:`C#` from the language dropdown.
238-
239-
Update a Search Index
240-
+++++++++++++++++++++
241-
242-
To learn how to modify an existing Atlas Search index using the {+driver-short+}, see
243-
:atlas:`Edit an Atlas Search Index </atlas-search/edit-index/>` in the Atlas manual
244-
and select :guilabel:`C#` from the language dropdown.
245-
246-
Drop a Search Index
247-
+++++++++++++++++++
248-
249-
To learn how to delete an Atlas Search index using the {+driver-short+}, see
250-
:atlas:`Delete an Atlas Search Index </atlas-search/delete-index/>` in the Atlas manual
251-
and select :guilabel:`C#` from the language dropdown.
252-
253206
Text Indexes
254207
~~~~~~~~~~~~
255208

0 commit comments

Comments
 (0)