索引引用字段Mongodb

问题描述 投票:0回答:1

我的模型中有此字段:

author: { type: Schema.Types.ObjectId, ref: 'Author' }

现在我的数据库有2万多个帖子,我想索引该字段,我试图从studio 3t shell执行此命令:

db.post.createIndex({ author: 1 });

但是它不起作用,查询仍然很慢。

database mongodb nosql robo3t
1个回答
0
投票

您可以使用MongoDB Compass进行create the index或验证索引是否存在。

您也可以将其用于verify that the index is used in your query

确定问题是未创建(或未正确创建)索引还是索引存在但未被用于查询,然后根据需要解决该问题。

© www.soinside.com 2019 - 2024. All rights reserved.