Skip to content

Fix broken links for methods in read operations #579

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jan 22, 2013
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions source/core/read-operations.txt
Original file line number Diff line number Diff line change
Expand Up @@ -572,8 +572,8 @@ To create a new query plan, the query optimizer:

1. runs the query against several candidate indexes in parallel.

#. The query optimizer records the matches in a common results buffer
or buffers:
#. records the matches in a common results buffer
or buffers.

- If the candidate plans include only :term:`ordered query plans
<ordered query plan>`, there is a single common results buffer.
Expand Down Expand Up @@ -916,13 +916,13 @@ For more information on the aggregation framework see
Additionally, MongoDB provides a number of simple data aggregation
operations for more basic data aggregation operations:

- :method:`count() <cursor.count()>`
- :method:`~cursor.count()`

- :dbcommand:`distinct() <distinct>`
- :method:`~db.collection.distinct()`

- :method:`group()`
- :method:`~db.collection.group()`

- :dbcommand:`mapReduce() <mapReduce>` (See also
- :method:`~db.collection.mapReduce()` (See also
:doc:`/applications/map-reduce`.)

.. index:: read operation; architecture
Expand All @@ -939,7 +939,7 @@ Read Operations From Sharded Clusters
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

:term:`Sharded clusters <sharded cluster>` allow you to partition a
data set among a cluster of program:`mongod` in a way that is nearly
data set among a cluster of :program:`mongod` in a way that is nearly
transparent to the application. See the :doc:`/sharding` section of
this manual for additional information about these deployments.

Expand Down
2 changes: 1 addition & 1 deletion source/core/write-operations.txt
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ can cause the secondary's state to fall behind that of the primary. Secondaries
that are significantly behind the primary present problems for normal
operation of the replica set, particularly :ref:`failover
<replica-set-failover-administration>` in the form of :ref:`rollbacks
<replica-set-rollback>` as well as general :ref:`re2ad consistency
<replica-set-rollback>` as well as general :ref:`read consistency
<replica-set-consistency>`.

To help avoid this issue, you can customize the :ref:`write concern
Expand Down