Skip to content

Commit 37f3679

Browse files
author
Sam Kleinman
committed
editing: more major changes and additions
1 parent 3d8d317 commit 37f3679

File tree

2 files changed

+377
-18
lines changed

2 files changed

+377
-18
lines changed

source/reference/glossary.rst

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,14 @@ Glossary
1313
`bsonspec.org <http://bsonspec.org/>`_.
1414

1515
database command
16-
MongoDB has database commands, which have a specific
17-
implementation, and allow you to control the database.
16+
Database commands are a special type of operation within MongoDB
17+
that make it possible to interact with the database system
18+
directly. MongoDB implements database commands as a form of
19+
query against the special ":term:`$cmd`" collection. These
20+
commands provide a number of administrative and other special
21+
operations.
1822

19-
.. seealso:: ":doc:`/reference/commands`."
23+
.. seealso:: ":doc:`/reference/commands`" for a
2024

2125
operator
2226
Operators provide tools for querying and manipulating
@@ -26,7 +30,7 @@ Glossary
2630
.. seealso:: ":doc:`/reference/operators`."
2731

2832
MongoDB
29-
A document-driven database.
33+
A document-driven database documented in this manual.
3034

3135
document
3236
A record in a MongoDB database. Documents are analogous to, but
@@ -54,7 +58,7 @@ Glossary
5458

5559
$cmd
5660
This is the special :term:`collection` used to :term:`MongoDB`
57-
to implement database commands.
61+
to implement :term:`database commands <database command>`.
5862

5963
JSON
6064
JavaScript Object Notation. A format for expressing structured
@@ -257,9 +261,15 @@ Glossary
257261
inconsistent state. These operations are typically very
258262
short-lived, but prevent all other operations from succeeding.
259263

260-
indexes
264+
index
261265
Indexes provide the database with a fast and reliable way of
262-
accessing data without requiring full searches on data.
266+
accessing data without requiring full reads of all data in a
267+
collection.
268+
269+
compound index
270+
An :term:`index`
271+
272+
.. seealso:: ":doc:`/core/indexing`"
263273

264274
btree
265275
btree's are a fast data representation that provides for

0 commit comments

Comments
 (0)