You are here

public function Apache_Solr_Service::setQueryDelimiter in Apache Solr Search 5

Set the string used to separate the path form the query string. Defaulted to '?'

Parameters

string $queryDelimiter:

File

SolrPhpClient/Apache/Solr/Service.php, line 497

Class

Apache_Solr_Service
Starting point for the Solr API. Represents a Solr server resource and has methods for pinging, adding, deleting, committing, optimizing and searching.

Code

public function setQueryDelimiter($queryDelimiter) {
  $this->_queryDelimiter = $queryDelimiter;
}