SolrQuery::setTermsLimit

(PECL solr >= 0.9.2) Sets the maximum number of terms to return public SolrQuery SolrQuery::setTermsLimit ( int $limit ) Sets the maximum number of terms to return Parameters: limit The maximum number of terms to return. All the terms will be returned if the limit is negative. Returns: Returns the current SolrQuery object, if the return value

SolrQuery::setTermsIncludeUpperBound

(PECL solr >= 0.9.2) Include the upper bound term in the result set public SolrQuery SolrQuery::setTermsIncludeUpperBound ( bool $flag ) Include the upper bound term in the result set. Parameters: flag TRUE or FALSE Returns: Returns the current SolrQuery object, if the return value is used.

SolrQuery::setTermsIncludeLowerBound

(PECL solr >= 0.9.2) Include the lower bound term in the result set public SolrQuery SolrQuery::setTermsIncludeLowerBound ( bool $flag ) Include the lower bound term in the result set. Parameters: flag Include the lower bound term in the result set Returns: Returns the current SolrQuery object, if the return value is used.

SolrQuery::setTermsField

(PECL solr >= 0.9.2) Sets the name of the field to get the Terms from public SolrQuery SolrQuery::setTermsField ( string $fieldname ) Sets the name of the field to get the terms from Parameters: fieldname The field name Returns: Returns the current SolrQuery object, if the return value is used.

SolrQuery::setTerms

(PECL solr >= 0.9.2) Enables or disables the TermsComponent public SolrQuery SolrQuery::setTerms ( bool $flag ) Enables or disables the TermsComponent Parameters: flag TRUE enables it. FALSE turns it off Returns: Returns the current SolrQuery object, if the return value is used.

SolrQuery::setStats

(PECL solr >= 0.9.2) Enables or disables the Stats component public SolrQuery SolrQuery::setStats ( bool $flag ) Enables or disables the Stats component. Parameters: flag TRUE turns on the stats component and FALSE disables it. Returns: Returns the current SolrQuery object, if the return value is used.

SolrQuery::setStart

(PECL solr >= 0.9.2) Specifies the number of rows to skip public SolrQuery SolrQuery::setStart ( int $start ) Specifies the number of rows to skip. Useful in pagination of results. Parameters: start The number of rows to skip. Returns: Returns the current SolrQuery object.

SolrQuery::setShowDebugInfo

(PECL solr >= 0.9.2) Flag to show debug information public SolrQuery SolrQuery::setShowDebugInfo ( bool $flag ) Whether to show debug info Parameters: flag Whether to show debug info. TRUE or FALSE Returns: Returns the current SolrQuery object, if the return value is used.

SolrQuery::setRows

(PECL solr >= 0.9.2) Specifies the maximum number of rows to return in the result public SolrQuery SolrQuery::setRows ( int $rows ) Specifies the maximum number of rows to return in the result Parameters: rows The maximum number of rows to return Returns: Returns the current SolrQuery object.

SolrQuery::setQuery

(PECL solr >= 0.9.2) Sets the search query public SolrQuery SolrQuery::setQuery ( string $query ) Sets the search query. Parameters: query The search query Returns: Returns the current SolrQuery object