(PECL solr >= 2.2.0)
Selects the group heads by the max value of a numeric field or function query.
public SolrCollapseFunction SolrCollapseFunction::setMax ( string $max )
Selects the group heads by the max value of a numeric field or function query.
Parameters:
max
Selects the group heads by the max value of a numeric field or function query.
Returns:
Examples:
SolrCollapseFunction::setMax() example
1 2 3 4 5 6 7 8 9 10 11 | <?php $func = new SolrCollapseFunction( 'field_name' ); $func ->setMax( 'sum(cscore(),field(some_field))' ); $query = new SolrQuery( '*:*' ); $query ->collapse( $func ); ?> |
Please login to continue.