1. 多键唯一索引
a.loc 和 a.qty 为符合多键索引
db.collection.createIndex( { "a.loc": 1, "a.qty": 1 }, { unique: true } )
如:
db.getCollection("Name,idcardNo").createIndex( { "Name": 1, "idcardNo": 1 }, { unique: true } )
2 单字段唯一索引
db.members.createIndex( { "user_id": 1 }, { unique: true } )
3 普通索引
db.collection.createIndex( { name: -1 } )