File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -352,13 +352,13 @@ increase the size of a document slightly without causing the document
352
352
to outgrow the allocated record size.
353
353
354
354
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.
362
362
363
363
For complete examples of update operations, see
364
364
:doc:`/applications/update`.
Original file line number Diff line number Diff line change @@ -162,7 +162,7 @@ inserted into the database. Consider the following possible causes:
162
162
163
163
- Empty records.
164
164
165
- MongoDB maintains lists of empty record blocks in data files when
165
+ MongoDB maintains lists of empty records in data files when
166
166
deleting documents and collections. MongoDB can reuse this space,
167
167
but will never return this space to the operating system.
168
168
You can’t perform that action at this time.
0 commit comments