MongoDB stats() 函数返回位还是字节?
当使用 MongoDB 的 .stats() 函数确定文档大小时,返回的值是以位还是字节为单位?
When using MongoDB's .stats() function to determine document size, are the values returned in bits or bytes?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
运行 collStats 命令 - db.collection.stats() - 返回所有大小(以字节为单位),例如
但是,如果您想要其他单位的结果,那么您还可以传入
scale
参数。例如,要获取以 KB 为单位的结果:
或以 MB 为单位:
Running the collStats command - db.collection.stats() - returns all sizes in bytes, e.g.
However, if you want the results in another unit then you can also pass in a
scale
argument.For example, to get the results in KB:
Or for MB:
当然是字节。除非您传入一个比例作为可选参数。
Bytes of course. Unless you pass in a scale as optional argument.