Skip to content

Fix typos in the 'New Default Allocation Strategy' release notes. #1573

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

Closed
wants to merge 1 commit into from
Closed
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
12 changes: 6 additions & 6 deletions source/release-notes/2.6.txt
Original file line number Diff line number Diff line change
Expand Up @@ -808,19 +808,19 @@ New Default Allocation Strategy
.. versionchanged:: 2.5.5

By default all new collections will use the
:collmod:`usePowerOf2Sizes` allocation strategy where each record has
:collflag:`usePowerOf2Sizes` allocation strategy where each record has
a size, in bytes rounded up to the power of 2.

The new allocation strategy, which was available as an option in
previous versions, uses more storage relative to total document size;
however, results in lower levels of storage fragmentation and more
however, it results in lower levels of storage fragmentation and more
predictable storage capacity planning over time.

You can continue use the previous *exact fit allocation strategy* by
setting :collmod:`usePowerOf2Sizes` to ``false`` with :dbcommand:`collMod` on a
You can continue to use the previous *exact fit allocation strategy* by
setting :collflag:`usePowerOf2Sizes` to ``false`` with :dbcommand:`collMod` on a
specific collection or setting
:parameter:`newCollectionsUsePowerOf2sizes` to ``false`` to disable
:collmod:`usePowerOf2Sizes` for new collections on an entire
:parameter:`newCollectionsUsePowerOf2Sizes` to ``false`` to disable
:collflag:`usePowerOf2Sizes` for new collections on an entire
:program:`mongod` instance.

Limit for ``maxConns`` Removed
Expand Down