Google News
logo
MongoDB - Quiz(MCQ)
_______ contains a counter of the total number of clients with active operations in progress or queued.
A)
globalLock
B)
globalLock.active
C)
localLock.activeClients
D)
globalLock.activeClients

Correct Answer :   globalLock.activeClients


Explanation : The activeClients data structure provides more granular information about the number of connected clients and the operation types (e.g. read or write) performed by these clients.

Advertisement