MongoDB 查看存储引擎

需要登录到具体的主/从节点查询,mongos查询不到

db.serverStatus()

其中有这个 "storageEngine" : {  "name" : "wiredTiger",  "supportsCommittedReads" : true,  "readOnly" : false,  "persistent" : true },   查看WiredTiger内部缓存到底占用了多少内存的方式是,在mongo shell中之行以下命令 db.runcommand( { serverStatus: 1 } ).wiredTiger.cache["bytes currently in the cache"] 如果不想重启mongoDB,可以在线修改,如下 db.adminCommand({setParameter: 1, wiredTigerEngineRuntimeConfig: "cache_size=8G"})

相关文章

MongoTemplate 是Spring Data MongoDB 中的一个核心类,为 S...
笔者今天要分享的是一个项目重构过程中如何将数据库选型由原...
mongodb/mongoTemplate.upsert批量插入更新数据的实现
进入官网下载官网安装点击next勾选同意,点击next点击custom...
头歌 MongoDB实验——数据库基本操作
期末考试复习总结