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

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

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

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

animalSchema.index({ name: 1, type: -1 });
上一篇:管你 JDK 还是 Linux,我 Netty 稳坐钓鱼台


下一篇:解决BeautifulSoup库运行时报错问题