From 4df6525b0575f000573bd997d297e5d4e6f16930 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jorge=20Puente=20Sarr=C3=ADn?= Date: Mon, 22 Apr 2013 22:39:38 -0500 Subject: [PATCH 1/7] Minor: redundant term --- source/applications/optimization.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/applications/optimization.txt b/source/applications/optimization.txt index bd4ed4d62bd..f84c7127681 100644 --- a/source/applications/optimization.txt +++ b/source/applications/optimization.txt @@ -5,9 +5,9 @@ Optimization Strategies for MongoDB .. default-domain:: mongodb There are many factors that can affect database performance and -responsiveness, including index use, query structure, data models, -application design and architecture, as well as operational factors -such as architecture and system configuration. +responsiveness, including index use, query structure, data models and +application design, as well as operational factors such as architecture +and system configuration. This section describes techniques for optimizing application performance with MongoDB. From af992b6256a502274ed6020e4d836c8673ba8122 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jorge=20Puente=20Sarr=C3=ADn?= Date: Mon, 22 Apr 2013 22:47:29 -0500 Subject: [PATCH 2/7] Fixed missing term --- source/tutorial/evaluate-operation-performance.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/tutorial/evaluate-operation-performance.txt b/source/tutorial/evaluate-operation-performance.txt index ed82c5be892..9452d046f33 100644 --- a/source/tutorial/evaluate-operation-performance.txt +++ b/source/tutorial/evaluate-operation-performance.txt @@ -38,7 +38,7 @@ query. .. example:: To use :method:`explain() ` on a query for documents matching the expression ``{ a: 1 }``, in the - collection ``records``, use an operation that resembles the + collection named ``records``, use an operation that resembles the following in the :program:`mongo` shell: .. code-block:: javascript From f6294dfce64c536a4502a4098ca504cab6b70d95 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jorge=20Puente=20Sarr=C3=ADn?= Date: Mon, 22 Apr 2013 22:55:43 -0500 Subject: [PATCH 3/7] Minor typo --- source/core/data-modeling.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/core/data-modeling.txt b/source/core/data-modeling.txt index 3e93c461320..90eca64e652 100644 --- a/source/core/data-modeling.txt +++ b/source/core/data-modeling.txt @@ -228,7 +228,7 @@ the following behaviors: A single ``.ns`` file stores all meta-data for each :term:`database`. Each index and collection has its own entry in the namespace file, MongoDB places :limit:`limits on the size of namespace -files. `. +files `. Because of :limit:`limits on namespaces `, you may wish to know the current number of namespaces in order to determine From e61c7023960a9877a82920b6d23f4b3259530644 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jorge=20Puente=20Sarr=C3=ADn?= Date: Mon, 22 Apr 2013 23:07:24 -0500 Subject: [PATCH 4/7] Minor typo on reference/system-collections document --- source/faq/developers.txt | 2 +- source/reference/system-collections.txt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/source/faq/developers.txt b/source/faq/developers.txt index 140eb0b86e1..bc38aa839b9 100644 --- a/source/faq/developers.txt +++ b/source/faq/developers.txt @@ -577,7 +577,7 @@ than once. [#id-is-immutable]_ The :method:`snapshot() ` does not guarantee that the data returned by the query will reflect a single moment in time -*nor* does it provide isolation from insert or delete operations.. +*nor* does it provide isolation from insert or delete operations. .. warning:: diff --git a/source/reference/system-collections.txt b/source/reference/system-collections.txt index 0949fdf6dd2..710563403a2 100644 --- a/source/reference/system-collections.txt +++ b/source/reference/system-collections.txt @@ -15,7 +15,7 @@ Synopsis MongoDB stores system information in collections that use the ``.system.*`` :term:`namespace`, which MongoDB reserves for -internal use. Do not create collections that begin with ``system.``. +internal use. Do not create collections that begin with ``system``. MongoDB also stores some additional instance-local metadata in the :doc:`local database `, specifically for From 9a52cca47679326acecd015ada448c58da8ac1a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jorge=20Puente=20Sarr=C3=ADn?= Date: Mon, 22 Apr 2013 23:09:58 -0500 Subject: [PATCH 5/7] Another typo on administration/monitoring document --- source/administration/monitoring.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/administration/monitoring.txt b/source/administration/monitoring.txt index dccc485941b..a8ed1436764 100644 --- a/source/administration/monitoring.txt +++ b/source/administration/monitoring.txt @@ -296,7 +296,7 @@ control these options. command. - :setting:`logpath`. Enables logging to a file, rather than standard - output. Specify the full path to the log file to this setting.. + output. Specify the full path to the log file to this setting. - :setting:`logappend`. Adds information to a log file instead of overwriting the file. From 29287f607e9eb723818e61c21ec75567a71a339b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jorge=20Puente=20Sarr=C3=ADn?= Date: Mon, 22 Apr 2013 23:16:52 -0500 Subject: [PATCH 6/7] Added missing newline --- source/core/update.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/source/core/update.txt b/source/core/update.txt index d7df997fddb..876f6248d39 100644 --- a/source/core/update.txt +++ b/source/core/update.txt @@ -73,6 +73,7 @@ The :method:`~db.collection.update()` has the following syntax .. [#previous-version] This examples uses the interface added in MongoDB 2.2 to specify the ``multi`` and the ``upsert`` options in a document form. + .. include:: /includes/fact-upsert-multi-options.rst Modify with Update Operators From 704120724832300504639d129185388545219097 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jorge=20Puente=20Sarr=C3=ADn?= Date: Mon, 22 Apr 2013 23:43:06 -0500 Subject: [PATCH 7/7] Fixed readability --- source/reference/limits.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/reference/limits.txt b/source/reference/limits.txt index 621de0f0f88..35e2645c2ec 100644 --- a/source/reference/limits.txt +++ b/source/reference/limits.txt @@ -55,7 +55,7 @@ Namespaces Namespace files can be no larger than 2047 megabytes. By default namespace files are 16 megabytes. You can configure the - size using the :setting:`nssize`. + size using the :setting:`nssize` option. Indexes ~~~~~~~