Skip to content

Commit 2764da7

Browse files
committed
DOCSP-45054: search index type (#580)
* DOCSP-45054: search index type * MW small fix (cherry picked from commit 518264b)
1 parent af692b4 commit 2764da7

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
@@ -17,6 +17,10 @@ Indexes
1717
:depth: 2
1818
:class: singlecol
1919

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

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

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

0 commit comments

Comments
 (0)