SolrDisMaxQuery::setBoostQuery

(No version information available, might only be in Git)

SolrDisMaxQuery::setBoostQueryDirectly Sets Boost Query Parameter (bq)

Descrição

public SolrDisMaxQuery::setBoostQuery(string $q): SolrDisMaxQuery

Sets Boost Query Parameter (bq)

Parâmetros

q

query

Valor Retornado

SolrDisMaxQuery

Exemplos

Exemplo #1 SolrDisMaxQuery::setBoostQuery() example

<?php
$dismaxQuery
= new SolrDisMaxQuery("lucene");

$dismaxQuery->setBoostQuery('cat:electronics manu:local^2');
echo
$dismaxQuery.PHP_EOL;
?>

O exemplo acima produzirá algo semelhante a:

q=lucene&defType=edismax&bq=cat:electronics manu:local^2

Veja Também

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top