@@ -197,19 +197,20 @@ Allocate Sufficient RAM and CPU
197197MMAPv1
198198``````
199199
200- The MMAPv1 storage engine is not CPU bound due to its concurrency
201- model . As such, increasing the number of cores can help but does not
202- provide significant return.
200+ Due to its concurrency model, the MMAPv1 storage engine does not
201+ require many CPU cores . As such, increasing the number of cores can
202+ help but does not provide significant return.
203203
204204Increasing the amount of RAM accessible to MongoDB may help reduce the
205205frequency of page faults.
206206
207207WiredTiger
208208``````````
209209
210- The WiredTiger storage engine is CPU bound. Specifically, the total
211- number of active threads (i.e. concurrent operations) relative to the
212- number of CPUs can impact performance:
210+ The WiredTiger storage engine is multithreaded and can take advantage
211+ of many CPU cores. Specifically, the total number of active threads
212+ (i.e. concurrent operations) relative to the number of CPUs can impact
213+ performance:
213214
214215- Throughput *increases* as the number of concurrent active operations
215216 increases up to the number of CPUs.
@@ -319,8 +320,8 @@ store MongoDB data in swap space. On Windows systems, using MMAPv1
319320requires extra swap space due to commitment limits. For details,
320321see :ref:`MongoDB on Windows <production-windows-pagefile>`.
321322
322- The WiredTiger storage engine also ensures that the operating system
323- does not store MongoDB data in swap space.
323+ For the WiredTiger storage engine, given sufficient memory pressure,
324+ WiredTiger may store data in swap space .
324325
325326RAID
326327````
0 commit comments