mongo常用命令

全表更新

db.getCollection('KeywordGrade').update( {},{$set : {'standard':true}},false,true )

 

唯一索引

db.getCollection('Resource').createIndex( { "info_hash": 1 }, { unique: true } )

 

全局text索引

db.getCollection('Resource').createIndex( { "$**": "text" } )

 

查询 排序

db.getCollection('Resource').find({info_hash:'ad2f08565b1fa0e2f59a1f606cfc0384b416d748'}).sort({'creationDate':-1}) 

你可能感兴趣的:(mongo常用命令)