SolrQuery::getTermsUpperBound

(PECL solr >= 0.9.2) Returns the term to stop at public string SolrQuery::getTermsUpperBound ( void ) Returns the term to stop at Returns: Returns a string on success and NULL if not set.

SolrQuery::getTermsSort

(PECL solr >= 0.9.2) Returns an integer indicating how terms are sorted public int SolrQuery::getTermsSort ( void ) SolrQuery::TERMS_SORT_INDEX indicates that the terms are returned by index order. SolrQuery::TERMS_SORT_COUNT implies that the terms are sorted by term frequency (highest count first) Returns: Returns an integer on success and NULL if not set.

SolrQuery::getTermsReturnRaw

(PECL solr >= 0.9.2) Whether or not to return raw characters public bool SolrQuery::getTermsReturnRaw ( void ) Returns a boolean indicating whether or not to return the raw characters of the indexed term, regardless of if it is human readable Returns: Returns a boolean on success and NULL if not set.

SolrQuery::getTermsPrefix

(PECL solr >= 0.9.2) Returns the term prefix public string SolrQuery::getTermsPrefix ( void ) Returns the prefix to which matching terms must be restricted. This will restrict matches to only terms that start with the prefix Returns: Returns a string on success and NULL if not set.

SolrQuery::getTermsMinCount

(PECL solr >= 0.9.2) Returns the minimum document frequency to return in order to be included public int SolrQuery::getTermsMinCount ( void ) Returns the minimum document frequency to return in order to be included Returns: Returns an integer on success and NULL if not set.

SolrQuery::getTermsMaxCount

(PECL solr >= 0.9.2) Returns the maximum document frequency public int SolrQuery::getTermsMaxCount ( void ) Returns the maximum document frequency Returns: Returns an integer on success and NULL if not set.

SolrQuery::getTermsLowerBound

(PECL solr >= 0.9.2) Returns the term to start at public string SolrQuery::getTermsLowerBound ( void ) Returns the term to start at Returns: Returns a string on success and NULL if not set.

SolrQuery::getTermsLimit

(PECL solr >= 0.9.2) Returns the maximum number of terms Solr should return public int SolrQuery::getTermsLimit ( void ) Returns the maximum number of terms Solr should return Returns: Returns an integer on success and NULL if not set.

SolrQuery::getTermsIncludeUpperBound

(PECL solr >= 0.9.2) Returns whether or not to include the upper bound term in the result set public bool SolrQuery::getTermsIncludeUpperBound ( void ) Returns whether or not to include the upper bound term in the result set Returns: Returns a boolean on success and NULL if not set.

SolrQuery::getTermsIncludeLowerBound

(PECL solr >= 0.9.2) Returns whether or not to include the lower bound in the result set public bool SolrQuery::getTermsIncludeLowerBound ( void ) Returns whether or not to include the lower bound in the result set Returns: Returns a boolean on success and NULL if not set.