mongodb - 查看数据库状态
2016-03-12 16:00 abce 阅读(1452) 评论(0) 编辑 收藏 举报> use test switched to db test > db.stats() { "db" : "test", #数据库名 "collections" : 1, #数据库中集合的数量 "objects" : 39734, #数据库中文档的总数 "avgObjSize" : 135.53422761363063, #文档的平均大小 "dataSize" : 5385317, #数据库大小 "storageSize" : 1634304, #数据库存储大小 "numExtents" : 0, "indexes" : 3, "indexSize" : 839680, "ok" : 1 } >