

InterviewSolution
Saved Bookmarks
1. |
With MongoDB 3.0.0, the default use of the Power of _________ Allocations minimizes the occurrences of re-allocations as well as allows for the effective reuse of the freed record space.(a) 2 Sized(b) 3 Sized(c) 4 Sized(d) 5 SizedThe question was posed to me by my school teacher while I was bunking the class.My question is from Data Modeling Introduction topic in portion Data Models of MongoDB |
Answer» RIGHT answer is (a) 2 Sized Explanation: When USING MMAPv1, if your APPLICATIONS require updates that will frequently cause document growth to exceeds the current power of 2 ALLOCATION, you may want to refactor your data model to USE references between data in distinct documents rather than a denormalized data model. |
|