<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/refs.basic.php.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'es',
  ),
  'this' => 
  array (
    0 => 'book.opcache.php',
    1 => 'OPcache',
    2 => 'OPcache',
  ),
  'up' => 
  array (
    0 => 'refs.basic.php.php',
    1 => 'Afecta el comportamiento de PHP',
  ),
  'prev' => 
  array (
    0 => 'class.ffi-parserexception.php',
    1 => 'FFI\\ParserException',
  ),
  'next' => 
  array (
    0 => 'opcache.setup.php',
    1 => 'Instalaci&oacute;n/Configuraci&oacute;n',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'es',
    'path' => 'reference/opcache/book.xml',
  ),
  'history' => 
  array (
  ),
  'extra_header_links' => 
  array (
    'rel' => 'alternate',
    'href' => '/manual/en/feeds/book.opcache.atom',
    'type' => 'application/atom+xml',
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="book.opcache" class="book">
 
 <h1 class="title">OPcache</h1>

 <div id="intro.opcache" class="preface">
  <h1 class="title">Introducción</h1>
  <p class="simpara">
   OPcache mejora el rendimiento de PHP almacenando el código de bytes de un script precompilado en
   la memoria compartida, eliminando así la necesidad de que PHP cargue y analice los script
   en cada petición.
  </p>
  <p class="simpara">
   Esta extensión está incluída en PHP 5.5.0 y posteriores, y está
   <a href="https://pecl.php.net/package/ZendOpcache" class="link external">&raquo;&nbsp;disponible en PECL</a>
   para las versiones 5.2, 5.3 y 5.4 de PHP.
  </p>
 </div>

 








 





 










<ul class="chunklist chunklist_book"><li><a href="opcache.setup.php">Instalaci&oacute;n/Configuraci&oacute;n</a><ul class="chunklist chunklist_book chunklist_children"><li><a href="opcache.installation.php">Instalaci&oacute;n</a></li><li><a href="opcache.configuration.php">Configuraci&oacute;n en tiempo de ejecuci&oacute;n</a></li></ul></li><li><a href="opcache.preloading.php">Precarga</a></li><li><a href="ref.opcache.php">Funciones de OPcache</a><ul class="chunklist chunklist_book chunklist_children"><li><a href="function.opcache-compile-file.php">opcache_compile_file</a> — Compila y almacena en cach&eacute; un script PHP sin ejecutarlo</li><li><a href="function.opcache-get-configuration.php">opcache_get_configuration</a> — Recupera la informaci&oacute;n de configuraci&oacute;n del cach&eacute;</li><li><a href="function.opcache-get-status.php">opcache_get_status</a> — Obtiene informaci&oacute;n sobre el estado del cach&eacute;</li><li><a href="function.opcache-invalidate.php">opcache_invalidate</a> — Invalida un script almacenado en cach&eacute;</li><li><a href="function.opcache-is-script-cached.php">opcache_is_script_cached</a> — Indica si un script est&aacute; en el cach&eacute; de OPCache</li><li><a href="function.opcache-is-script-cached-in-file-cache.php">opcache_is_script_cached_in_file_cache</a> — Indica si un script est&aacute; en la cach&eacute; de archivos de OPCache</li><li><a href="function.opcache-jit-blacklist.php">opcache_jit_blacklist</a> — Excluye una funci&oacute;n de la compilaci&oacute;n JIT</li><li><a href="function.opcache-reset.php">opcache_reset</a> — Reinicia el contenido del cache opcode</li></ul></li></ul></div><?php manual_footer($setup); ?>