Nest.js - 在猫鼬模式中创建索引

时间:2020-12-23 08:58:02

标签: node.js mongoose nestjs

如何使用 Nest.js 在 mongoose 模式中创建属性索引?

我尝试将索引添加为属性选项,但尚未创建索引:

@Schema()
export class Schema extends Document {

  @Prop()
  _id: string;

  @Prop({required: true, index: true})
  type: string;

  @Prop()
  creationDate: string;

  @Prop()
  name: string;
}

export const MySchema = SchemaFactory.createForClass(Schema);

我也试过这种方法:

export const MySchema = SchemaFactory.createForClass(Schema).index({ type: 1 });

两者都没有按预期工作。

有什么方法可以做到这一点?

谢谢

2 个答案:

答案 0 :(得分:0)

这对我有用

export const MySchema = SchemaFactory.createForClass(Schema);
MySchema.index({ type: 1 }, { unique: true });

同样可以扩展到复合索引 - 例如:

MySchema.index({ type: 1, name: 1 }, { unique: true });

答案 1 :(得分:0)

如果有人来这里寻找如何为地理位置/2dsphere 添加索引,就像我一样,您可以在 NestJs 中使用以下内容。

@Prop({ index: "2dsphere" })

另外,在设置 mongoose 模块时,添加 useCreateIndex: true

MongooseModule.forRootAsync({
 useFactory: async (config: ConfigService) => ({
   uri: config.get('mongo_url'),
   useNewUrlParser: true,
   useCreateIndex: true,
 }),
 inject: [ConfigService],
})