<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/class.memcached.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'uk',
  ),
  'this' => 
  array (
    0 => 'memcached.getallkeys.php',
    1 => 'Memcached::getAllKeys',
    2 => 'Gets the keys stored on all the servers',
  ),
  'up' => 
  array (
    0 => 'class.memcached.php',
    1 => 'Memcached',
  ),
  'prev' => 
  array (
    0 => 'memcached.get.php',
    1 => 'Memcached::get',
  ),
  'next' => 
  array (
    0 => 'memcached.getbykey.php',
    1 => 'Memcached::getByKey',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/memcached/memcached/getallkeys.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="memcached.getallkeys" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">Memcached::getAllKeys</h1>
  <p class="verinfo">(PECL memcached &gt;= 2.0.0)</p><p class="refpurpose"><span class="refname">Memcached::getAllKeys</span> &mdash; <span class="dc-title">Gets the keys stored on all the servers</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-memcached.getallkeys-description">
  <h3 class="title">Опис</h3>
  <div class="methodsynopsis dc-description">
   <span class="modifier">public</span> <span class="methodname"><strong>Memcached::getAllKeys</strong></span>(): <span class="type"><span class="type"><a href="language.types.array.php" class="type array">array</a></span>|<span class="type"><a href="language.types.singleton.php" class="type false">false</a></span></span></div>

  <p class="para rdfs-comment">
   <span class="function"><strong>Memcached::getAllKeys()</strong></span> queries each memcache server
   and retrieves an array of all keys stored on them at that point in time.
   This is not an atomic operation, so it isn&#039;t a truly consistent snapshot of
   the keys at point in time. As memcache doesn&#039;t guarantee to return all keys
   you also cannot assume that all keys have been returned.
  </p>
  <blockquote class="note"><p><strong class="note">Зауваження</strong>: 
   <p class="para">
    This method is intended for debugging purposes and should not be used at scale!
   </p>
  </p></blockquote>
 </div>


 <div class="refsect1 parameters" id="refsect1-memcached.getallkeys-parameters">
  <h3 class="title">Параметри</h3>
  <p class="para">У цієї функції немає
параметрів.</p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-memcached.getallkeys-returnvalues">
  <h3 class="title">Значення, що повертаються</h3>
  <p class="para">
   Returns the keys stored on all the servers on success або <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> в разі помилки.
  </p>
 </div>


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