

InterviewSolution
Saved Bookmarks
1. |
Which of the following command returns quickly and does not impact MongoDB performance?(a) dbStats(b) db.serverStatus()(c) db.stats()(d) none of the mentioned |
Answer» Correct choice is (b) db.serverStatus() For explanation: serverStatus outputs an account of the state of a MongoDB instance. |
|