使用documentation中的示例,假设我有英语的 content 字段和葡萄牙语的 about 字段。如何为每个字段创建指定一种语言的文本索引?
db.blog.createIndex(
{
content: "text",
keywords: "text",
about: "text"
},
{
weights: {
content: 10,
keywords: 5
},
name: "TextIndex"
}
)