• 首页
  • vue
  • TypeScript
  • JavaScript
  • scss
  • css3
  • html5
  • php
  • MySQL
  • redis
  • jQuery
  • SolrDisMaxQuery::setMinimumMatch()

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

    Set Minimum "Should" Match(mm)

    说明

    publicSolrDisMaxQuery::setMinimumMatch(string $value): SolrDisMaxQuery

    Set Minimum "Should" Match parameter(mm). If the default query operator is AND then mm=100%, if the default query operator(q.op)is OR, then mm=0%.

    参数

    $value

    Minimum match value/expression

    返回值

    SolrDisMaxQuery

    范例

    Example #1 SolrDisMaxQuery::setMinimumMatch() example

    <?php
    $dismaxQuery = new SolrDisMaxQuery("lucene");
    // 75% of the query clauses must match
    $dismaxQuery->setMinimumMatch("75%");
    echo $dismaxQuery . PHP_EOL;
    ?>
    

    以上例程会输出:

    q=lucene&defType=edismax&mm=75%