一些限定
·所有文档都必须小于16MB(这是设计者人为限定的,未来可能会增加)
·
新增数据库
mongo没有实际上新建数据库的操作,通过切换到一个新的数据库,新家一个Collection等操作数据库也就新建完成了。如下:
use test
db.createCollections('uinfo')
添加用户
用例:在test库中新添加用户admin和只读用户test
use test
db.addUser("admin", "123456")
db.addUser("test", "123456", true) // true代表是否只读
添加唯一键索引
db.uinfo.ensureIndex({"uid":1}, {unique:true}) //给集合uinfo的uid字段加上唯一键索引。
删除
删除集合中的所有文档
db.uinfo.remove() //删除uinfo集合中的所有文档
db.uinfo.drop() //drop掉整个集合数据,速度更快