InterviewSolution
Saved Bookmarks
| 1. |
What authorization model does MongoDB follow? |
Answer»
Consider the following compound index { "accountHolder": 1, "accountNumber": 1, "currency": 1 }The index prefixes are { accountHolder: 1 } { accountHolder: 1, accountNumber: 1 }Query plan will USE this index if the query has the following fields
|
|