In MongoDB, when we pass field names as the second parameter for find query does mongodb load whole document in memory or only the memory associated with those fields ?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
On the MongoDB server side, the whole document is stored in one place on disk. Because MongoDB use memory mapped files, any document access requires that whole document to be loaded in memory. After the query has run, only the requested fields are transferred to the client. This means that on the client/driver side, only the requested fields are stored in memory, and not the whole document