我想在删除所有内容后在数据库中重新创建模型。
Mongoose(或 Mongo 本身)实际上重新创建了文档而不是索引。那么有没有办法重置Mongoose,以便它可以像第一次运行一样重新创建索引?
我使用 dropDatabase 的原因是因为它在测试时看起来更容易。否则我将不得不一一删除所有集合。
我想在删除所有内容后在数据库中重新创建模型。
Mongoose(或 Mongo 本身)实际上重新创建了文档而不是索引。那么有没有办法重置Mongoose,以便它可以像第一次运行一样重新创建索引?
我使用 dropDatabase 的原因是因为它在测试时看起来更容易。否则我将不得不一一删除所有集合。
虽然不建议用于生产,但根据您的方案,您可以将该index
属性添加到字段定义中以指定您要创建索引:
var animalSchema = new Schema({
name: String,
type: String,
tags: { type: [String], index: true } // field level
});
animalSchema.index({ name: 1, type: -1 }); // schema level
或者,
var s = new Schema({ name: { type: String, sparse: true })
Schema.path('name').index({ sparse: true });
或者,您可以调用ensureIndex
(文档)Model
:
Animal.ensureIndexes(function (err) {
if (err) return handleError(err);
});