<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/zookeeper.setup.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'ru',
  ),
  'this' => 
  array (
    0 => 'zookeeper.configuration.php',
    1 => 'Настройка во время выполнения',
    2 => 'Настройка во время выполнения',
  ),
  'up' => 
  array (
    0 => 'zookeeper.setup.php',
    1 => 'Установка и настройка',
  ),
  'prev' => 
  array (
    0 => 'zookeeper.installation.php',
    1 => 'Установка',
  ),
  'next' => 
  array (
    0 => 'ref.zookeeper.php',
    1 => 'Функции ZooKeeper',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'ru',
    'path' => 'reference/zookeeper/ini.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="zookeeper.configuration" class="section">
 <h2 class="title">Настройка во время выполнения</h2>
 <p class="simpara">
Поведение функций зависит от установок в файле <var class="filename">php.ini</var>.
</p>

 <p class="para">
  <table class="doctable table">
   <caption><strong>Опции настройки модуля Zookeeper</strong></caption>
   
    <thead>
     <tr>
      <th>Имя</th>
      <th>По умолчанию</th>
      <th>Место изменения</th>
      <th>Список изменений</th>
     </tr>

    </thead>

    <tbody class="tbody">
     <tr>
      <td><a href="zookeeper.configuration.php#ini.zookeeper.recv_timeout" class="link">zookeeper.recv_timeout</a></td>
      <td>10000</td>
      <td><strong><code><a href="info.constants.php#constant.ini-all">INI_ALL</a></code></strong></td>
      <td class="empty">&nbsp;</td>
     </tr>

     <tr>
      <td><a href="zookeeper.configuration.php#ini.zookeeper.session_lock" class="link">zookeeper.session_lock</a></td>
      <td>1</td>
      <td><strong><code><a href="info.constants.php#constant.ini-system">INI_SYSTEM</a></code></strong></td>
      <td class="empty">&nbsp;</td>
     </tr>

     <tr>
      <td><a href="zookeeper.configuration.php#ini.zookeeper.sess_lock_wait" class="link">zookeeper.sess_lock_wait</a></td>
      <td>150000</td>
      <td><strong><code><a href="info.constants.php#constant.ini-all">INI_ALL</a></code></strong></td>
      <td class="empty">&nbsp;</td>
     </tr>

    </tbody>
   
  </table>


  Дополнительную информацию и определения режимов
INI_* даёт раздел «<a href="configuration.changes.modes.php" class="xref">Места установки параметров конфигурации</a>».

 </p>

 <p class="para">Краткое разъяснение конфигурационных
директив.</p>

 <p class="para">
  <dl>

   
    <dt id="ini.zookeeper.recv_timeout">
     <code class="parameter">zookeeper.recv_timeout</code>
     <span class="type"><a href="language.types.integer.php" class="type int">int</a></span>
    </dt>
    <dd>
     <p class="para">
      Время ожидания по умолчанию для всех ZooKeeper-сессий.
     </p>
    </dd>
   

   
    <dt id="ini.zookeeper.session_lock">
     <code class="parameter">zookeeper.session_lock</code>
     <span class="type"><a href="language.types.integer.php" class="type int">int</a></span>
    </dt>
    <dd>
     <p class="para">
      Разрешает блокировку PHP-сессий.
     </p>
    </dd>
   

   
    <dt id="ini.zookeeper.sess_lock_wait">
     <code class="parameter">zookeeper.sess_lock_wait</code>
     <span class="type"><a href="language.types.integer.php" class="type int">int</a></span>
    </dt>
    <dd>
     <p class="para">
      Время ожидания повтора при взаимной блокировке PHP-сессии в микросекундах.
      При установке значения соблюдают осторожность. Корректные значения —
      целые числа, значение по умолчанию равняется 0. Отрицательные значения уменьшают попытки блокирования.
     </p>
    </dd>
   

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