我有一个集合posts
,如下:
{
"_id" : ObjectId("5ad249121c76fb096c0081e6"),
"slug" : "5ad2491261324",
"title" : "title",
"content" : "content here",
"tags" : [
"tag1",
"tag2"
],
"status" : 1,
"created_at" : ISODate("2018-04-12T07:23:07.000Z"),
"user_id" : ObjectId("5ad249111c76fb096c007dfd"),
"url_id" : ObjectId("5ad249121c76fb096c0081e7"),
"updated_at" : ISODate("2018-04-14T18:31:46.000Z"),
"images" : [
{
"extension" : "jpg",
"path" : "/medias/tests/4.jpg",
"thumbnail" : "/medias/tests/4-th.jpg",
"updated_at" : ISODate("2018-04-14T18:31:46.000Z"),
"created_at" : ISODate("2018-04-14T18:31:46.000Z"),
"_id" : ObjectId("5ad249121c76fb096c0081e8")
}
]
}
在这个系列中,我有100米记录,我需要按标签查找帖子。
那么我怎样才能以正确的方式对其进行索引以在最短的时间内获得结果?