]> git.pld-linux.org Git - packages/php.git/blobdiff - opcache.ini
Remove xmlrpc: moved to pecl
[packages/php.git] / opcache.ini
index 2cc841dc67331f77a48b84f903de92dcbb64f43a..b2931f6f0324e0e73beb541b2c551e5690068192 100644 (file)
@@ -1,6 +1,4 @@
-; Enable opcache zend extension module
-zend_extension=opcache.so
-
+[opcache]
 ; Determines if Zend OPCache is enabled
 ;opcache.enable=1
 
@@ -97,6 +95,10 @@ zend_extension=opcache.so
 ; errors.
 ;opcache.mmap_base=
 
+; Facilitates multiple OPcache instances per user (for Windows only). All PHP
+; processes with the same cache ID and user share an OPcache instance.
+;opcache.cache_id=
+
 ; Enables and sets the second level cache directory.
 ; It should improve performance when SHM memory is full, at server restart or
 ; SHM reset. The default "" disables file based caching.
@@ -126,3 +128,21 @@ zend_extension=opcache.so
 ; If specified, it produces opcode dumps for debugging different stages of
 ; optimizations.
 ;opcache.opt_debug_level=0
+
+; Specifies a PHP script that is going to be compiled and executed at server
+; start-up.
+; http://php.net/opcache.preload
+;opcache.preload=
+
+; Preloading code as root is not allowed for security reasons. This directive
+; facilitates to let the preloading to be run as another user.
+; http://php.net/opcache.preload_user
+;opcache.preload_user=
+
+; Prevents caching files that are less than this number of seconds old. It
+; protects from caching of incompletely updated files. In case all file updates
+; on your site are atomic, you may increase performance by setting it to "0".
+;opcache.file_update_protection=2
+
+; Absolute path used to store shared lockfiles (for *nix only).
+;opcache.lockfile_path=/tmp
This page took 0.027233 seconds and 4 git commands to generate.