Skip to content

Commit 5a0f0d6

Browse files
(DOCSP-27350): Update Atlas Search callouts - follow up (#2336)
* (DOCSP-27350): Update Atlas Search callouts - follow up * tweak language in include * more edits * tweak formatting in indexes overview * change page titles to use 'self managed' * remove note about view support * update regex intro * external review feedback * formatting
1 parent ea5a6ae commit 5a0f0d6

File tree

10 files changed

+56
-40
lines changed

10 files changed

+56
-40
lines changed

source/core/index-text.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@ Text Indexes
1212
:depth: 1
1313
:class: singlecol
1414

15+
.. include:: /includes/extracts/fact-text-search-legacy-atlas.rst
16+
1517
Overview
1618
--------
1719

source/core/link-text-indexes.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
.. _text-search-on-premises:
22

3-
===================================
4-
Perform a Text Search (On-Premises)
5-
===================================
3+
================================================
4+
Perform a Text Search (Self-Managed Deployments)
5+
================================================
66

77
.. default-domain:: mongodb
88

source/core/text-search-operators.txt

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
.. _text-search-operators-on-premises:
22

3-
===================================
4-
Text Search Operators (On-Premises)
5-
===================================
3+
================================================
4+
Text Search Operators (Self-Managed Deployments)
5+
================================================
66

77
.. default-domain:: mongodb
88

@@ -14,10 +14,6 @@ Text Search Operators (On-Premises)
1414

1515
.. include:: /includes/extracts/fact-text-search-legacy-atlas.rst
1616

17-
.. note::
18-
19-
.. include:: /includes/extracts/views-unsupported-text-search.rst
20-
2117
Query Framework
2218
---------------
2319

source/core/text-search/on-prem.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
.. _text-search-on-prem:
22

3-
=======================
4-
On-Premises Text Search
5-
=======================
3+
=======================================
4+
Text Search on Self-Managed Deployments
5+
=======================================
66

77
.. default-domain:: mongodb
88

source/includes/extracts-atlas-search-facts.yaml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,12 @@
11
ref: fact-text-search-legacy-atlas
22
content: |
33
4-
MongoDB offers a :atlas:`full-text search solution, MongoDB Atlas
5-
Search </atlas-search/>`, for data hosted on :atlas:`MongoDB Atlas
6-
</>`. Users running self-managed MongoDB deployments have access to
7-
on-premises text search capabilities.
4+
.. note::
5+
6+
This page describes text search capabilities for self-managed
7+
(non-Atlas) deployments. For data hosted on MongoDB Atlas, MongoDB
8+
offers an improved full-text search solution, :atlas:`Atlas Search
9+
</atlas-search/>`.
810
911
---
1012
ref: fact-regex-search-legacy-atlas
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
For data hosted on MongoDB Atlas, you can support full-text search with
2+
Atlas Search indexes. To learn more, see :atlas:`Create an Atlas Search
3+
Index </atlas-search/create-index/>`.
4+
5+
For self-managed (non-Atlas) deployments, MongoDB provides a ``text``
6+
index type that supports searching for string content in a collection.
7+
To learn more about self-managed text indexes, see
8+
:ref:`index-feature-text`.

source/indexes.txt

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -176,16 +176,10 @@ planar geometry when returning results and :ref:`2dsphere indexes
176176
See :ref:`index-feature-geospatial` for a high level introduction to
177177
geospatial indexes.
178178

179-
Text Indexes
180-
~~~~~~~~~~~~
181-
182-
MongoDB provides a ``text`` index type that supports searching
183-
for string content in a collection. These text indexes do not store
184-
language-specific *stop* words (e.g. "the", "a", "or") and *stem* the
185-
words in a collection to only store root words.
179+
Text Search Indexes
180+
~~~~~~~~~~~~~~~~~~~
186181

187-
See :doc:`/core/index-text` for more information on text indexes and
188-
search.
182+
.. include:: /includes/indexes/text-search-indexes-overview.rst
189183

190184
Hashed Indexes
191185
~~~~~~~~~~~~~~

source/reference/operator/query/regex.txt

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,14 @@ $regex
1414
:description: pattern matching on strings in MongoDB {+latest-lts-version+}
1515
:keywords: regex, regular expressions, LIKE queries, wildcard matches, pattern matches, MongoDB {+latest-lts-version+}, version {+latest-lts-version+}
1616

17-
.. include:: /includes/extracts/fact-regex-search-legacy-atlas.rst
17+
.. note::
18+
19+
This page describes regular expression search capabilities for
20+
self-managed (non-Atlas) deployments. For data hosted on MongoDB
21+
Atlas, MongoDB offers an improved full-text search solution,
22+
:atlas:`Atlas Search </atlas-search/>`, which has its own ``$regex``
23+
operator. To learn more, see :atlas:`$regex </atlas-search/regex/>`
24+
in the Atlas Search documentation.
1825

1926
Definition
2027
----------

source/text-search.txt

Lines changed: 15 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,19 @@ Text Search
1212
:depth: 1
1313
:class: singlecol
1414

15-
.. include:: /includes/extracts/fact-text-search-legacy-atlas.rst
15+
MongoDB provides different text search capabilities depending on whether
16+
your data is hosted on :atlas:`MongoDB Atlas </>` or a self-managed
17+
deployment.
1618

1719
MongoDB Atlas Search
1820
--------------------
1921

20-
For MongoDB Atlas users, MongoDB's Atlas Search supports fine-grained
21-
text indexing and a rich query language for fast, relevant search
22-
results. To learn more about full-text search indexes and
23-
:pipeline:`$search` queries, see:
22+
To perform text search on data hosted on MongoDB Atlas, use
23+
:atlas:`MongoDB Atlas Search </atlas-search>`. Atlas Search supports
24+
fine-grained text indexing and a rich query language for fast, relevant
25+
search results.
26+
27+
To learn more and get started with Atlas Search, see:
2428

2529
- :atlas:`Atlas Search Aggregation Pipeline Stages
2630
</reference/atlas-search/query-syntax/>`
@@ -31,10 +35,10 @@ results. To learn more about full-text search indexes and
3135

3236
.. include:: /includes/fact-atlas-search-languages.rst
3337

34-
On-Premises Text Search
35-
-----------------------
38+
Text Search on Self-Managed Deployments
39+
---------------------------------------
3640

37-
For on-premises (non-Atlas) deployments, MongoDB's text search
41+
For self-managed (non-Atlas) deployments, MongoDB's text search
3842
capability supports query operations that perform a text search of
3943
string content. To perform text search, MongoDB uses a :ref:`text index
4044
<index-feature-text>` and the :query:`$text` operator.
@@ -43,14 +47,13 @@ string content. To perform text search, MongoDB uses a :ref:`text index
4347

4448
.. include:: /includes/extracts/views-unsupported-text-search.rst
4549

46-
To learn more about text search for on-premises deployments, see:
50+
To learn more about text search for self-managed deployments, see:
4751

4852
- :ref:`Text Indexes <text-search-on-premises>`
4953
- :ref:`Text Search Operators <text-search-operators-on-premises>`
5054

51-
MongoDB also supports text search for various languages. See
52-
:doc:`/reference/text-search-languages` for a list of supported
53-
languages.
55+
MongoDB also supports text search for various languages. For a list of
56+
supported languages, see :ref:`text-search-languages`.
5457

5558
.. toctree::
5659
:titlesonly:

source/tutorial/create-indexes-to-support-queries.txt

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,12 @@ can support all the queries that search a "prefix" subset of those fields.
8888

8989
.. include:: /includes/fact-index-intersection-vs-compound-indexes.rst
9090

91+
Create Indexes to Support Text Search
92+
-------------------------------------
93+
94+
.. include:: /includes/indexes/text-search-indexes-overview.rst
95+
9196
Index Use and Collation
9297
-----------------------
9398

9499
.. include:: /includes/extracts/collation-index-use.rst
95-

0 commit comments

Comments
 (0)