SolrDisMaxQuery::addBoostQuery

(No version information available, might only be in Git) Adds a boost query field with value and optional boost (bq parameter) public SolrDisMaxQuery SolrDisMaxQuery::addBoostQuery ( string $field, string $value [, string $boost ] ) Adds a Boost Query field with value [and boost] (bq parameter) Parameters: field Adds a Boost Query field with value [and boost] (bq paramete

SolrDisMaxQuery::addBigramPhraseField

(No version information available, might only be in Git) Adds a Phrase Bigram Field (pf2 parameter) public SolrDisMaxQuery SolrDisMaxQuery::addBigramPhraseField ( string $field, string $boost [, string $slop ] ) Adds a Phrase Bigram Field (pf2 parameter) output format: field~slop^boost OR field^boost Slop is optional Parameters: field Adds a Phrase Bigram Field (pf2 param

SolrQuery::setTimeAllowed

(PECL solr >= 0.9.2) The time allowed for search to finish public SolrQuery SolrQuery::setTimeAllowed ( int $timeAllowed ) The time allowed for a search to finish. This value only applies to the search and not to requests in general. Time is in milliseconds. Values less than or equal to zero implies no time restriction. Partial results may be returned, if there are any. Parameters:

SolrQuery::setTermsUpperBound

(PECL solr >= 0.9.2) Sets the term to stop at public SolrQuery SolrQuery::setTermsUpperBound ( string $upperBound ) Sets the term to stop at Parameters: upperBound The term to stop at Returns: Returns the current SolrQuery object, if the return value is used.

SolrQuery::setTermsSort

(PECL solr >= 0.9.2) Specifies how to sort the returned terms public SolrQuery SolrQuery::setTermsSort ( int $sortType ) If SolrQuery::TERMS_SORT_COUNT, sorts the terms by the term frequency (highest count first). If SolrQuery::TERMS_SORT_INDEX, returns the terms in index order Parameters: sortType SolrQuery::TERMS_SORT_INDEX or SolrQuery::TERMS_SORT_COUNT

SolrQuery::setTermsReturnRaw

(PECL solr >= 0.9.2) Return the raw characters of the indexed term public SolrQuery SolrQuery::setTermsReturnRaw ( bool $flag ) If true, return the raw characters of the indexed term, regardless of if it is human readable Parameters: value TRUE or FALSE Returns: Returns the current SolrQuery object, if the return value is used.

SolrQuery::setTermsPrefix

(PECL solr >= 0.9.2) Restrict matches to terms that start with the prefix public SolrQuery SolrQuery::setTermsPrefix ( string $prefix ) Restrict matches to terms that start with the prefix Parameters: prefix Restrict matches to terms that start with the prefix Returns: Returns the current SolrQuery object, if the return value is used.

SolrQuery::setTermsMinCount

(PECL solr >= 0.9.2) Sets the minimum document frequency public SolrQuery SolrQuery::setTermsMinCount ( int $frequency ) Sets the minimum doc frequency to return in order to be included Parameters: frequency The minimum frequency Returns: Returns the current SolrQuery object, if the return value is used.

SolrQuery::setTermsMaxCount

(PECL solr >= 0.9.2) Sets the maximum document frequency public SolrQuery SolrQuery::setTermsMaxCount ( int $frequency ) Sets the maximum document frequency. Parameters: frequency The maximum document frequency. Returns: Returns the current SolrQuery object, if the return value is used.

SolrQuery::setTermsLowerBound

(PECL solr >= 0.9.2) Specifies the Term to start from public SolrQuery SolrQuery::setTermsLowerBound ( string $lowerBound ) Specifies the Term to start from Parameters: lowerBound The lower bound Term Returns: Returns the current SolrQuery object, if the return value is used.