您的位置:首页 > 数据库 > Mongodb

mongodb 增加全文检索索引

2015-02-09 17:12 393 查看
$mongodb = Yii::$app->mongodb;
$cursor = $mongodb->getCollection($table);
$cursor->mongoCollection->ensureIndex(
[
'name' => 'text',
'description' => 'text',
],
[

'weights' => [
'name' => 10,
'description' => 5,
],
'default_language'=>$store,
]
);


db.getCollection("product_flat").ensureIndex({
"name.name_en":"text",
"description.description_en":"text"
},
{

"weights":{
"name.name_en":10,
"description.description_en":5
},
"default_language":"english",
}
);
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: