mongoose中给字段添加索引的方法
Posted 向着太阳生
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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中给字段添加索引的方法的主要内容,如果未能解决你的问题,请参考以下文章
使用 mongoose 通过 update 方法向 mongodb 中的现有文档添加新字段