You are here

public function Apache_Solr_Service_Balancer::commit in Apache Solr Search 5

Send a commit command. Will be synchronous unless both wait parameters are set to false.

Parameters

boolean $waitFlush:

boolean $waitSearcher:

Return value

Apache_Solr_Response

Throws

Exception If an error occurs during the service call

File

SolrPhpClient/Apache/Solr/Service/Balancer.php, line 553

Class

Apache_Solr_Service_Balancer
Reference Implementation for using multiple Solr services in a distribution. Functionality includes: routing of read / write operations failover (on selection) for multiple read servers

Code

public function commit($optimize = true, $waitFlush = true, $waitSearcher = true, $timeout = 3600) {
  $service = $this
    ->_selectWriteService();
  do {
    try {
      return $service
        ->commit($optimize, $waitFlush, $waitSearcher, $timeout);
    } catch (Exception $e) {
      if ($e
        ->getCode() != 0) {

        //IF NOT COMMUNICATION ERROR
        throw $e;
      }
    }
    $service = $this
      ->_selectWriteService(true);
  } while ($service);
  return false;
}