MongoDBへの接続の現在の数を確認してください
1407 ワード
への接続の現在の数をチェック
Jan 23 ' 12
160
管理データベースに接続し、db.serverStatus()
を実行します.> var status = db.serverStatus()
> status.connections
{"current" : 21, "available" : 15979}
>
直接クエリを取得することができますdb.serverStatus().connections
MongoDBのdb.serverStatus().connections
レスポンスが何を意味するかを理解するために、ドキュメンテーションhereを読んでください.
connections
"connections" : {
"current" : <num>,
…
Open Full Answer
Reference
この問題について(MongoDBへの接続の現在の数を確認してください), 我々は、より多くの情報をここで見つけました
https://dev.to/rnagarajan96/answer-check-the-current-number-of-connections-to-mongodb-232c
テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol
> var status = db.serverStatus()
> status.connections
{"current" : 21, "available" : 15979}
>
db.serverStatus().connections
connections
"connections" : { "current" : <num>,
…
Open Full Answer
Reference
この問題について(MongoDBへの接続の現在の数を確認してください), 我々は、より多くの情報をここで見つけました https://dev.to/rnagarajan96/answer-check-the-current-number-of-connections-to-mongodb-232cテキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol