diff --git a/source/release-notes/2.6.txt b/source/release-notes/2.6.txt index 5e9a1644ece..f6fd7816bed 100644 --- a/source/release-notes/2.6.txt +++ b/source/release-notes/2.6.txt @@ -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