<?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 => 'tr',
  ),
  'this' => 
  array (
    0 => 'book.opcache.php',
    1 => 'OPcache',
    2 => 'OPcache',
  ),
  'up' => 
  array (
    0 => 'refs.basic.php.php',
    1 => 'PHP\'nin Davranışını Etkileyenler',
  ),
  'prev' => 
  array (
    0 => 'class.ffi-parserexception.php',
    1 => 'FFI\\ParserException',
  ),
  'next' => 
  array (
    0 => 'opcache.setup.php',
    1 => 'Yapılandırma/Kurulum',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    '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">Giriş</h1>
  <p class="simpara">
   OPcache improves PHP performance by storing precompiled script bytecode in
   shared memory, thereby removing the need for PHP to load and parse scripts
   on each request.
  </p>
  <p class="simpara">
   This extension is bundled with PHP 5.5.0 and later, and is
   <a href="https://pecl.php.net/package/ZendOpcache" class="link external">&raquo;&nbsp;available in PECL</a>
   for PHP versions 5.2, 5.3 and 5.4.
  </p>
 </div>

 






 




 








<ul class="chunklist chunklist_book"><li><a href="opcache.setup.php">Yapılandırma/Kurulum</a><ul class="chunklist chunklist_book chunklist_children"><li><a href="opcache.installation.php">Kurulum</a></li><li><a href="opcache.configuration.php">&Ccedil;alışma Anı Yapılandırması</a></li></ul></li><li><a href="opcache.preloading.php">Preloading</a></li><li><a href="ref.opcache.php">OPcache İşlevleri</a><ul class="chunklist chunklist_book chunklist_children"><li><a href="function.opcache-compile-file.php">opcache_compile_file</a> — Compiles and caches a PHP script without executing it</li><li><a href="function.opcache-get-configuration.php">opcache_get_configuration</a> — Get configuration information about the cache</li><li><a href="function.opcache-get-status.php">opcache_get_status</a> — Get status information about the cache</li><li><a href="function.opcache-invalidate.php">opcache_invalidate</a> — Invalidates a cached script</li><li><a href="function.opcache-is-script-cached.php">opcache_is_script_cached</a> — Tells whether a script is cached in OPCache</li><li><a href="function.opcache-is-script-cached-in-file-cache.php">opcache_is_script_cached_in_file_cache</a> — Tells whether a script is cached in OPCache file cache</li><li><a href="function.opcache-jit-blacklist.php">opcache_jit_blacklist</a> — Blacklists a function from being JIT compiled</li><li><a href="function.opcache-reset.php">opcache_reset</a> — Resets the contents of the opcode cache</li></ul></li></ul></div><?php manual_footer($setup); ?>