Skip to content

Commit 8ab322a

Browse files
committed
DOCS-914 copy edits in the indexes.txt
1 parent f75761a commit 8ab322a

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

source/applications/indexes.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ of index configurations with data sets similar to the ones you'll be
3232
running in production to see which configurations perform best.
3333

3434
MongoDB can only use *one* index to support any given
35-
operation. However, each clause of an :operator:`$or` query can use
36-
its own index.
35+
operation. However, each clause of an :operator:`$or` query may use
36+
a different index.
3737

3838
.. _indexes-create-to-match-queries:
3939

@@ -63,7 +63,7 @@ you also can query on ``category`` combined with ``item``.
6363
(To query on multiple keys and sort the results, see :ref:`index-sort`.)
6464

6565
With the exception of queries that use the :operator:`$or` operator, a
66-
query cannot use multiple indexes. A query must use only one index.
66+
query does not use multiple indexes. A query uses only one index.
6767

6868
.. _compound-key-indexes:
6969
.. _indexes-compound-key-indexes:
@@ -207,7 +207,7 @@ are equality matches.
207207
Ensure Indexes Fit RAM
208208
----------------------
209209

210-
For fastest processing, ensure that your indexes fit entirely in RAM so
210+
For the fastest processing, ensure that your indexes fit entirely in RAM so
211211
that the system can avoid reading the index from disk.
212212

213213
To check the size of your indexes, use the
@@ -226,10 +226,10 @@ available but also must have RAM available for the rest of the
226226

227227
If you have and use multiple collections, you must consider the size
228228
of all indexes on all collections. The indexes and the working set must be able to
229-
fit in RAM at the same time.
229+
fit in memory at the same time.
230230

231231
There are some limited cases where indexes do not need
232-
to fit in RAM. See :ref:`indexing-right-handed`.
232+
to fit in memory. See :ref:`indexing-right-handed`.
233233

234234
.. seealso:: For additional :doc:`collection statistics
235235
</reference/collection-statistics>`, use :dbcommand:`collStats` or
@@ -241,7 +241,7 @@ Indexes that Hold Only Recent Values in RAM
241241
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
242242

243243
Indexes do not have to fit *entirely* into RAM in all cases. If the
244-
value of the indexed field grows with every insert, and most queries
244+
value of the indexed field increments with every insert, and most queries
245245
select recently added documents; then MongoDB only needs to keep the
246246
parts of the index that hold the most recent or "right-most" values in
247247
RAM. This allows for efficient index use for read and write

source/reference/operator/explain.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ $explain
99

1010
.. operator:: $explain
1111

12-
:operator:`$explain` operator provides information on the query
12+
The :operator:`$explain` operator provides information on the query
1313
plan. It returns a :doc:`document </reference/explain>` that describes
1414
the process and indexes used to return the query. This may provide
1515
useful insight when attempting to optimize a query.

0 commit comments

Comments
 (0)