摘要:
################# 重定向输入mongo脚本: #! /bin/bash mongo --username root --password 123456 --host 10.10.10.10 --port 27017 --authenticationDatabase admin << 阅读全文
摘要:
################################### 返回正在执行且运行时间超过10s的连接信息: db.currentOp({"secs_running": {"$gt": 10},"active": true}) 返回去掉系统线程的连接: db.currentOp({ "act 阅读全文
摘要:
################################## 一、插入数据insert : 插入一条数据: db.products.insert( { _id: 10, item: "box", qty: 20 } ) 插入多条数据: db.products.insert( [ { _id: 阅读全文