

InterviewSolution
Saved Bookmarks
1. |
To modify an existing index, you cannot just re-issue the _________ method with the updated specification of the index.(a) dropIndex()(b) modIndex()(c) createIndex()(d) none of the mentionedThis question was posed to me in homework.Query is from Index Management in chapter Index/Indexing Concepts of MongoDB |
Answer» RIGHT ANSWER is (C) createIndex() To elaborate: To modify the index, you must drop the index first. |
|