gpt4 book ai didi

node.js - mongodb npm 中的 db.collection.stats() 等效项是什么?

转载 作者:太空宇宙 更新时间:2023-11-03 22:54:50 33 4
gpt4 key购买 nike

我在 node.js 中使用 mongodb npm 作为 mongoDb 驱动程序

有什么办法吗

 db.collection.stats()

类似于我们在 mongo Shell 中可以做的事情

最佳答案

要获取数据库统计信息,您可以使用带有回调的统计信息,例如

stats([options], callback)

示例:

var db = new Db('test', new Server('locahost', 27017));

db.open(function(err, db) {
//Open connection

db.stats(function(err, stats) {
// second parameter stats contains the result from stats
db.close();
})
});

关于node.js - mongodb npm 中的 db.collection.stats() 等效项是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23171854/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com