我的模型中有此字段:
author: { type: Schema.Types.ObjectId, ref: 'Author' }
现在我的数据库有2万多个帖子,我想索引该字段,我试图从studio 3t shell执行此命令:
db.post.createIndex({ author: 1 });
但是它不起作用,查询仍然很慢。
您可以使用MongoDB Compass进行create the index或验证索引是否存在。
您也可以将其用于verify that the index is used in your query。
确定问题是未创建(或未正确创建)索引还是索引存在但未被用于查询,然后根据需要解决该问题。