You are here

protected property SolrBaseQuery::$params in Apache Solr Search 7

Same name and namespace in other branches
  1. 8 Solr_Base_Query.php \SolrBaseQuery::params
  2. 6.3 Solr_Base_Query.php \SolrBaseQuery::params

The parameters that get sent to Solr.

File

./Solr_Base_Query.php, line 263
This class allows you to make operations on a query that will be sent to Apache Solr. methods such as adding and removing sorts, remove and replace parameters, adding and removing filters, getters and setters for various parameters and more

Class

SolrBaseQuery

Code

protected $params = array(
  'start' => 0,
  'rows' => 10,
  'fq' => array(),
);