Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> MongoDB

ตรวจสอบจำนวนการเชื่อมต่อกับ MongoDB ปัจจุบันหรือไม่


คุณสามารถตรวจสอบจำนวนการเชื่อมต่อกับ MongoDB ได้โดยใช้รูปแบบต่อไปนี้ -

var anyVariableName= db.serverStatus();
yourVariableName.connections;

ไวยากรณ์ที่สองมีดังนี้ −

db.serverStatus().connections;

เพื่อให้เข้าใจไวยากรณ์ทั้งสองข้างต้น ให้เราดูทีละตัว −

กรณีที่ 1 − แบบสอบถามแรกมีดังนี้ −

> var checkCurrentNumberOfConnections = db.serverStatus()
> checkCurrentNumberOfConnections.connections;

ต่อไปนี้เป็นผลลัพธ์ -

{ "current" : 1, "available" : 999999, "totalCreated" : 1 }

กรณีที่ 2 − คำถามที่สองมีดังนี้ −

> db.serverStatus().connections

ต่อไปนี้เป็นผลลัพธ์ -

{ "current" : 1, "available" : 999999, "totalCreated" : 1 }