InterviewSolution
Saved Bookmarks
| 1. |
What Is Role Of Profiler In Mongodb? |
|
Answer» MONGODB includes a database profiler which shows performance characteristics of each operation against the database. Using the profiler you can find QUERIES (and write OPERATIONS) which are SLOWER than they should be; USE this information, for example, to determine when an index is needed. MongoDB includes a database profiler which shows performance characteristics of each operation against the database. Using the profiler you can find queries (and write operations) which are slower than they should be; use this information, for example, to determine when an index is needed. |
|