SolrCollapseFunction::setMax

(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:

SolrCollapseFunction

Examples:
SolrCollapseFunction::setMax() example
<?php

$func = new SolrCollapseFunction('field_name');

$func->setMax('sum(cscore(),field(some_field))');

$query = new SolrQuery('*:*');

$query->collapse($func);

?>

doc_php
2016-02-24 16:11:50
Comments
Leave a Comment

Please login to continue.