<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/book.apcu.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'uk',
  ),
  'this' => 
  array (
    0 => 'intro.apcu.php',
    1 => 'Вступ',
    2 => 'Вступ',
  ),
  'up' => 
  array (
    0 => 'book.apcu.php',
    1 => 'APCu',
  ),
  'prev' => 
  array (
    0 => 'book.apcu.php',
    1 => 'APCu',
  ),
  'next' => 
  array (
    0 => 'apcu.setup.php',
    1 => 'Встановлення/налаштування',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/apcu/book.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="intro.apcu" class="preface">
  <h1 class="title">Вступ</h1>
  <p class="para">
   APCu is an in-memory key-value store for PHP.
   Keys are of type <span class="type"><a href="language.types.string.php" class="type string">string</a></span> and values can be any PHP variables.
   APCu only supports userland caching of variables.
  </p>
  <p class="para">
   The APCu cache is per-process on Windows, so when using a process-based
   (rather than thread-based) SAPI, it will not be shared between different processes.
  </p>
  <p class="para">
   APCu is APC stripped of opcode caching.
  </p>
  <p class="para">
   The first APCu codebase was versioned 4.0.0, it was forked from the head of the APC master branch at the time.
   PHP 7 support is available as of APCu 5.0.0. PHP 8 support is available as of APCu 5.1.19.
  </p>
 </div><?php manual_footer($setup); ?>