<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/class.solrclient.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'it',
  ),
  'this' => 
  array (
    0 => 'solrclient.commit.php',
    1 => 'SolrClient::commit',
    2 => 'Finalizes all add/deletes made to the index',
  ),
  'up' => 
  array (
    0 => 'class.solrclient.php',
    1 => 'SolrClient',
  ),
  'prev' => 
  array (
    0 => 'solrclient.adddocuments.php',
    1 => 'SolrClient::addDocuments',
  ),
  'next' => 
  array (
    0 => 'solrclient.construct.php',
    1 => 'SolrClient::__construct',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/solr/solrclient/commit.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="solrclient.commit" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">SolrClient::commit</h1>
  <p class="verinfo">(PECL solr &gt;= 0.9.2)</p><p class="refpurpose"><span class="refname">SolrClient::commit</span> &mdash; <span class="dc-title">Finalizes all add/deletes made to the index</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-solrclient.commit-description">
  <h3 class="title">Descrizione</h3>
  <div class="methodsynopsis dc-description">
   <span class="modifier">public</span> <span class="methodname"><strong>SolrClient::commit</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.boolean.php" class="type bool">bool</a></span> <code class="parameter">$softCommit</code><span class="initializer"> = <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong></span></span>, <span class="methodparam"><span class="type"><a href="language.types.boolean.php" class="type bool">bool</a></span> <code class="parameter">$waitSearcher</code><span class="initializer"> = <strong><code><a href="reserved.constants.php#constant.true">true</a></code></strong></span></span>, <span class="methodparam"><span class="type"><a href="language.types.boolean.php" class="type bool">bool</a></span> <code class="parameter">$expungeDeletes</code><span class="initializer"> = <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong></span></span>): <span class="type"><a href="class.solrupdateresponse.php" class="type SolrUpdateResponse">SolrUpdateResponse</a></span></div>

  <p class="para rdfs-comment">
   This method finalizes all add/deletes made to the index.
  </p>

 </div>


 <div class="refsect1 parameters" id="refsect1-solrclient.commit-parameters">
  <h3 class="title">Elenco dei parametri</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">softCommit</code></dt>
     <dd>
      <p class="para">
       This will refresh the &#039;view&#039; of the index in a more performant manner, but without &quot;on-disk&quot; guarantees. (Solr4.0+)
      </p>
      <p class="para">
          A soft commit is much faster since it only makes index changes visible and does not fsync index files or write a new index descriptor. 
          If the JVM crashes or there is a loss of power, changes that occurred after the last hard commit will be lost. 
          Search collections that have near-real-time requirements (that want index changes to be quickly visible to searches) will want to soft commit often but hard commit less frequently. 
      </p>
     </dd>
    
    
     <dt><code class="parameter">waitSearcher</code></dt>
     <dd>
      <p class="para">
       block until a new searcher is opened and registered as the main query searcher, making the changes visible. 
      </p>
     </dd>
    
    
     <dt><code class="parameter">expungeDeletes</code></dt>
     <dd>
      <p class="para">
       Merge segments with deletes away. (Solr1.4+)
      </p>
     </dd>
    
   </dl>
  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-solrclient.commit-returnvalues">
  <h3 class="title">Valori restituiti</h3>
  <p class="para">
   Returns a <span class="classname"><a href="class.solrupdateresponse.php" class="classname">SolrUpdateResponse</a></span> object on success or throws an exception on failure.
  </p>
 </div>

 
 <div class="refsect1 errors" id="refsect1-solrclient.commit-errors">
  <h3 class="title">Errori/Eccezioni</h3>
  <p class="para">
   Throws <span class="classname"><a href="class.solrclientexception.php" class="classname">SolrClientException</a></span> if the client had failed, or there was a connection issue.
  </p>
  <p class="para">
   Throws <span class="classname"><a href="class.solrserverexception.php" class="classname">SolrServerException</a></span> if the Solr Server had failed to process the request.
  </p>
 </div>

 
 <div class="refsect1 changelog" id="refsect1-solrclient.commit-changelog">
  <h3 class="title">Log delle modifiche</h3>
  <p class="para">
   <table class="doctable informaltable">
    
     <thead>
      <tr>
       <th>Versione</th>
       <th>Descrizione</th>
      </tr>

     </thead>

     <tbody class="tbody">
      <tr>
       <td>PECL solr 1.1.0, PECL solr 2.0.0</td>
       <td>
        $maxSegments removed
       </td>
      </tr>

      <tr>
       <td>PECL solr 2.0.0b</td>
       <td>
        API Changed: SolrClient::commit ([ int $maxSegments = 0 [, bool $softCommit = false [, bool $waitSearcher = true[, bool $expungeDeletes = false ]]] )
       </td>
      </tr>

      
      <tr>
       <td>PECL solr 0.9.2</td>
       <td>
        Signature: SolrClient::commit ([ int $maxSegments = 1 [, bool $waitFlush = true [, bool $waitSearcher = true ]]] ). 
        $waitFlush: Block until index changes are flushed to disk.
       </td>
      </tr>

     </tbody>
    
   </table>

  </p>
 </div>

 <div class="refsect1 notes" id="refsect1-solrclient.commit-notes">
  <h3 class="title">Note</h3>
  <div class="warning"><strong class="warning">Avviso</strong>
   <p class="para">
        PECL Solr &gt;= 2.0 only supports Solr Server &gt;= 4.0 
   </p>
  </div>
 </div>

 <div class="refsect1 seealso" id="refsect1-solrclient.commit-seealso">
  <h3 class="title">Vedere anche:</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="methodname"><a href="solrclient.optimize.php" class="methodname" rel="rdfs-seeAlso">SolrClient::optimize()</a> - Defragments the index</span></li>
    <li><span class="methodname"><a href="solrclient.rollback.php" class="methodname" rel="rdfs-seeAlso">SolrClient::rollback()</a> - Rollbacks all add/deletes made to the index since the last commit</span></li>
   </ul>
  </p>
 </div>


</div><?php manual_footer($setup); ?>