SolrDisMaxQuery::addQueryField

(No version information available, might only be in Git)
Add a query field with optional boost (qf parameter)
public SolrDisMaxQuery SolrDisMaxQuery::addQueryField ( string $field [, string $boost ] )

Add a query field with optional boost (qf parameter)

Parameters:
field

field name

boost

Boost value. Boosts documents with matching terms.

Returns:

SolrDisMaxQuery

Examples:
SolrDisMaxQuery::addQueryField() example
1
2
3
4
5
6
7
8
9
10
11
12
<?php
 
$dismaxQuery new SolrDisMaxQuery("lucene");
$dismaxQuery
    ->addQueryField("location", 4)
    ->addQueryField("price")
    ->addQueryField("sku")
    ->addQueryField("title",3.4)
;
echo $dismaxQuery;
 
?>

The above example will output something similar to:

q=lucene&defType=edismax&qf=location^4 price sku title^3.4
See also:

SolrDisMaxQuery::removeQueryField() -

doc_php
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.