Skip to content

Commit bac5b25

Browse files
author
Sam Kleinman
committed
DOCS-869: record size language changes
1 parent 5beeb19 commit bac5b25

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

source/core/write-operations.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -352,13 +352,13 @@ increase the size of a document slightly without causing the document
352352
to outgrow the allocated record size.
353353

354354
Documents in MongoDB can grow up to the full maximum :limit:`BSON
355-
document size <BSON Document Size>`; however, when documents outgrow
356-
their record size MongoDB must allocate a new record and move the
357-
document to the new record. Update operations that do not cause a
358-
document to grow, (i.e. *in-place* updates,) are significantly more
359-
efferent than those updates that cause document growth. Use :doc:`data
360-
models </core/data-modeling>` that minimize the need for document
361-
growth when possible.
355+
document size <BSON Document Size>`. However, when documents outgrow
356+
their allocated record size MongoDB must allocate a new record and
357+
move the document to the new record. Update operations that do not
358+
cause a document to grow, (i.e. *in-place* updates,) are significantly
359+
more efficient than those updates that cause document growth. Use
360+
:doc:`data models </core/data-modeling>` that minimize the need for
361+
document growth when possible.
362362

363363
For complete examples of update operations, see
364364
:doc:`/applications/update`.

source/faq/storage.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ inserted into the database. Consider the following possible causes:
162162

163163
- Empty records.
164164

165-
MongoDB maintains lists of empty record blocks in data files when
165+
MongoDB maintains lists of empty records in data files when
166166
deleting documents and collections. MongoDB can reuse this space,
167167
but will never return this space to the operating system.
168168

0 commit comments

Comments
 (0)