MongoDB:为多个字段创建文本索引,每个字段使用不同的语言

时间:2018-04-28 16:28:58

标签: mongodb

使用documentation中的示例,假设我有英语的 content 字段和葡萄牙语的 about 字段。如何为每个字段创建指定一种语言的文本索引?

db.blog.createIndex(
   {
     content: "text",
     keywords: "text",
     about: "text"
   },
   {
     weights: {
       content: 10,
       keywords: 5
     },
     name: "TextIndex"
   }
 )

0 个答案:

没有答案