Skip to content

Commit 3f3372e

Browse files
authored
Merge pull request #697 from mcmorisi/DOCSP-50018-eol-server
2 parents bb24e3b + 6c7903a commit 3f3372e

File tree

3 files changed

+3
-69
lines changed

3 files changed

+3
-69
lines changed

source/crud/query-documents/sort.txt

Lines changed: 0 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44
Sort Results
55
============
66

7-
8-
97
.. contents:: On this page
108
:local:
119
:backlinks: none
@@ -373,15 +371,6 @@ The output of the preceding code resembles the following:
373371
{"_id": 2, "letter": "a", "food": "donuts and coffee", "score": 0.75}
374372
{"_id": 3, "letter": "a", "food": "maple syrup", "score": 0.75}
375373

376-
.. note:: Text Search Behavior in MongoDB 4.4 or Later
377-
378-
The structure of text search has changed for MongoDB 4.4 or later. You no
379-
longer project ``Projections.metaTextScore()`` into your
380-
``FindIterable`` instance in order to sort on the text score. In addition,
381-
the field name you specify in a ``$meta`` text score aggregation operation
382-
used in a sort is ignored. This means that the field name argument you pass
383-
to ``Sorts.metaTextScore()`` is disregarded.
384-
385374
For more information about the classes in this section, see the
386375
following API Documentation:
387376

source/includes/mongodb-compatibility-table-java.rst

Lines changed: 0 additions & 55 deletions
Original file line numberDiff line numberDiff line change
@@ -9,130 +9,75 @@
99
- MongoDB 7.0
1010
- MongoDB 6.1
1111
- MongoDB 6.0
12-
- MongoDB 5.0
13-
- MongoDB 4.4
14-
- MongoDB 4.2
15-
- MongoDB 4.0
16-
- MongoDB 3.6
1712

1813
* - 5.5
1914
- ✓
2015
- ✓
2116
- ✓
2217
- ✓
2318
- ✓
24-
- ✓
25-
- ✓
26-
- ✓
27-
-
28-
-
2919

3020
* - 5.2 to 5.4
3121
- ✓
3222
- ✓
3323
- ✓
3424
- ✓
3525
- ✓
36-
- ✓
37-
- ✓
38-
- ✓
39-
- ✓
40-
-
4126

4227
* - 4.10 to 5.1
4328
- ⊛
4429
- ⊛
4530
- ✓
4631
- ✓
4732
- ✓
48-
- ✓
49-
- ✓
50-
- ✓
51-
- ✓
52-
- ✓
5333

5434
* - 4.8 to 4.9
5535
- ⊛
5636
- ⊛
5737
- ⊛
5838
- ✓
5939
- ✓
60-
- ✓
61-
- ✓
62-
- ✓
63-
- ✓
64-
- ✓
6540

6641
* - 4.7
6742
- ⊛
6843
- ⊛
6944
- ⊛
7045
- ⊛
7146
- ✓
72-
- ✓
73-
- ✓
74-
- ✓
75-
- ✓
76-
- ✓
7747

7848
* - 4.3 to 4.6
7949
- ⊛
8050
- ⊛
8151
- ⊛
8252
- ⊛
8353
- ⊛
84-
- ✓
85-
- ✓
86-
- ✓
87-
- ✓
88-
- ✓
8954

9055
* - 4.1 to 4.2
9156
- ⊛
9257
- ⊛
9358
- ⊛
9459
- ⊛
9560
- ⊛
96-
- ⊛
97-
- ✓
98-
- ✓
99-
- ✓
100-
- ✓
10161

10262
* - 4.0
10363
- ⊛
10464
- ⊛
10565
- ⊛
10666
- ⊛
10767
- ⊛
108-
- ⊛
109-
- ⊛
110-
- ✓
111-
- ✓
112-
- ✓
11368

11469
* - 3.11 to 3.12
11570
- ✗ [#v3-note]_
11671
- ⊛
11772
- ⊛
11873
- ⊛
11974
- ⊛
120-
- ⊛
121-
- ⊛
122-
- ✓
123-
- ✓
124-
- ✓
12575

12676
* - 3.8 to 3.10
12777
- ✗ [#v3-note]_
12878
- ⊛
12979
- ⊛
13080
- ⊛
13181
- ⊛
132-
- ⊛
133-
- ⊛
134-
- ⊛
135-
- ✓
136-
- ✓
13782

13883
.. [#v3-note] These driver versions are not compatible with MongoDB 8.1 or later because of an authentication issue. To learn more, see :ref:`java-server-8.1-incompatibility`.

source/indexes.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,9 @@ that you track index memory and disk usage for capacity planning. In addition,
7878
when a write operation updates an indexed field, MongoDB updates the related
7979
index.
8080

81-
Since MongoDB supports dynamic schemas, applications can query against fields whose names cannot be known in advance or
82-
are arbitrary. MongoDB 4.2 introduced :manual:`wildcard indexes </core/index-wildcard/>` to help support these queries.
83-
Wildcard indexes are not designed to replace workload-based index planning.
81+
Since MongoDB supports dynamic schemas, applications can query against fields whose names you don't know in advance or
82+
are arbitrary. :manual:`Wildcard indexes </core/index-wildcard/>` help support these queries, but
83+
are not designed to replace workload-based index planning.
8484

8585
For more information about designing your data model and choosing indexes appropriate for your application, see the {+mdb-server+}
8686
:manual:`Data Modeling and Indexes </core/data-model-operations/#indexes>`.

0 commit comments

Comments
 (0)