首页 > 代码库 > mongoose中给字段添加索引的方法

mongoose中给字段添加索引的方法

mongoose中给字段添加索引的方法有两种,一种通过在定义schema的时候配置,如:

1 var animalSchema = new Schema({
2   name: String,
3   type: String,
4   tags: { type: [String], index: true }

另一种通过index方法添加索引,如给name和type字段添加索引(1和-1分别表示升序索引和降序索引):

animalSchema.index({ name: 1, type: -1 });

 

mongoose中给字段添加索引的方法