函数名称:SolrInputDocument::setFieldBoost()
适用版本:Solr 4.0.0+
函数描述:该函数用于设置SolrInputDocument中的字段的权重(boost)。权重可以影响搜索结果的排序。
用法:
void SolrInputDocument::setFieldBoost ( string $fieldName , float $fieldBoost )
参数:
- $fieldName:要设置权重的字段名称。
- $fieldBoost:要设置的权重值,必须为浮点数。
返回值:无返回值。
示例:
// 创建SolrInputDocument对象
$doc = new SolrInputDocument();
// 添加字段到文档
$doc->addField('id', '12345');
$doc->addField('title', 'Example Document');
$doc->addField('content', 'This is an example document.');
// 设置字段权重
$doc->setFieldBoost('title', 2.0);
$doc->setFieldBoost('content', 1.5);
// 打印文档
print_r($doc);
输出结果:
SolrInputDocument Object
(
[_fields:SolrInputDocument:private] => Array
(
[0] => SolrInputField Object
(
[name] => id
[boost] => 0
[values] => Array
(
[0] => 12345
)
)
[1] => SolrInputField Object
(
[name] => title
[boost] => 2.0
[values] => Array
(
[0] => Example Document
)
)
[2] => SolrInputField Object
(
[name] => content
[boost] => 1.5
[values] => Array
(
[0] => This is an example document.
)
)
)
)
以上示例演示了如何使用SolrInputDocument::setFieldBoost()函数设置SolrInputDocument对象中字段的权重。在示例中,我们创建了一个包含'id'、'title'和'content'字段的文档,并使用setFieldBoost()函数分别为'title'字段设置了2.0的权重和'content'字段设置了1.5的权重。最后,通过打印文档,我们可以看到字段的权重已成功设置。