X-Git-Url: http://git.pld-linux.org/?p=packages%2Fphp.git;a=blobdiff_plain;f=opcache.ini;h=67c0381339beddcf86f08c07f076604d9b4b65ba;hp=26c5574cdcf9546e4de9b8496b5cb7a925672790;hb=45629e6e9bbed84edb75f9580aabea932a696556;hpb=c8d3fdcab81ab584e2c4c38c716547b0765a8a21 diff --git a/opcache.ini b/opcache.ini index 26c5574..67c0381 100644 --- a/opcache.ini +++ b/opcache.ini @@ -1,157 +1,153 @@ -; Enable zendopcache zend extension module -zend_extension=@extensiondir@/opcache.so +[opcache] +; Determines if Zend OPCache is enabled +;opcache.enable=1 -; OPcache On/Off switch. When set to Off, code is not optimized. -; (default "1") -opcache.enable = 1 +; Determines if Zend OPCache is enabled for the CLI version of PHP +;opcache.enable_cli=0 ; The OPcache shared memory storage size. -; The amount of memory for storing precompiled PHP code in Mbytes. -; (default "64") -opcache.memory_consumption = 64 +;opcache.memory_consumption=128 ; The amount of memory for interned strings in Mbytes. -; (default "4") -opcache.interned_strings_buffer = 4 +;opcache.interned_strings_buffer=8 ; The maximum number of keys (scripts) in the OPcache hash table. -; The number is actually the first one in the following set of prime numbers -; that is bigger than the one supplied: { 223, 463, 983, 1979, 3907, 7963, -; 16229, 32531, 65407, 130987 }. Only numbers between 200 and 100000 are -; allowed. -; (default "2000") -opcache.max_accelerated_files = 2000 +; Only numbers between 200 and 1000000 are allowed. +;opcache.max_accelerated_files=10000 ; The maximum percentage of "wasted" memory until a restart is scheduled. -; (default "5") -opcache.max_wasted_percentage = 5 +;opcache.max_wasted_percentage=5 ; When this directive is enabled, the OPcache appends the current working ; directory to the script key, thus eliminating possible collisions between ; files with the same name (basename). Disabling the directive improves ; performance, but may break existing applications. -; (default "1") -opcache.use_cwd = 1 +;opcache.use_cwd=1 -; When disabled, you must reset the OPcache manually or restart the webserver -; for changes to the filesystem to take effect. The frequency of the check is -; controlled by the directive "opcache.revalidate_freq". -; (default "1") -opcache.validate_timestamps = 1 +; When disabled, you must reset the OPcache manually or restart the +; webserver for changes to the filesystem to take effect. +;opcache.validate_timestamps=1 ; How often (in seconds) to check file timestamps for changes to the shared -; memory storage allocation. ("1" means validate once per second, but only once -; per request. "0" means always validate) -; (default "2") -opcache.revalidate_freq = 2 - -; Enables or disables file search in include_path optimization. -; If the file search is disabled and a cached file is found that uses the same -; include_path, the file is not searched again. Thus, if a file with the same -; name appears somewhere else in include_path, it won't be found. Enable this -; directive if this optimization has an effect on your applications. The -; default for this directive is disabled, which means that optimization is -; active. -; (default "0") -opcache.revalidate_path = 0 - -; If disabled, all PHPDoc comments are dropped from the code to reduce the size -; of the optimized code. Disabling "Doc Comments" may break some existing -; applications and frameworks (e.g. Doctrine, ZF2, PHPUnit) -; (default "1") -opcache.save_comments = 1 - -; If disabled, PHPDoc comments are not loaded from SHM, so "Doc Comments" may -; be always stored (save_comments=1), but not loaded by applications that don't -; need them anyway. -; (default "1") -opcache.load_comments = 1 - -; If enabled, a fast shutdown sequence is used for the accelerated code. The -; fast shutdown sequence doesn't free each allocated block, but lets the Zend -; Engine Memory Manager do the work. -; (default "0") -opcache.fast_shutdown = 0 +; memory storage allocation. ("1" means validate once per second, but only +; once per request. "0" means always validate) +;opcache.revalidate_freq=2 + +; Enables or disables file search in include_path optimization +;opcache.revalidate_path=0 + +; If disabled, all PHPDoc comments are dropped from the code to reduce the +; size of the optimized code. +;opcache.save_comments=1 + +; If enabled, compilation warnings (including notices and deprecations) will +; be recorded and replayed each time a file is included. Otherwise, compilation +; warnings will only be emitted when the file is first cached. +;opcache.record_warnings=0 ; Allow file existence override (file_exists, etc.) performance feature. -; (default "0") -opcache.enable_file_override = 0 - -; A bitmask, where each bit enables or disables the appropriate OPcache passes -; (default "0xffffffff") -opcache.optimization_level = 0xffffffff - -; Enable this hack as a workaround for "can't redeclare class" errors. -; The OPcache stores the places where DECLARE_CLASS opcodes use inheritance -; (These are the only opcodes that can be executed by PHP, but which may not be -; executed because the parent class is missing due to optimization). When the -; file is loaded, OPcache tries to bind the inherited classes by using the -; current environment. The problem with this scenario is that, while the -; DECLARE_CLASS opcode may not be needed for the current script, if the script -; requires that the opcode at least be defined, it may not run. The default for -; this directive is disabled, which means that optimization is active. In -; php-5.3 and above this hack is not needed anymore and this setting has no -; effect. -; (default "1") -opcache.inherited_hack = 1 - -; The location of the OPcache blacklist file. -; The OPcache blacklist file is a text file that holds the names of files that -; should not be accelerated. The file format is to add each filename to a new -; line. The filename may be a full path or just a file prefix (i.e., /var/www/x -; blacklists all the files and directories in /var/www that start with 'x'). -; Files are usually triggered by one of the following three reasons: -; 1) Directories that contain auto generated code, like Smarty or ZFW cache. -; 2) Code that does not work well when accelerated, due to some delayed compile -; time evaluation. -; 3) Code that triggers an OPcache bug. -; (default "") -opcache.blacklist_filename = "" - -; Allows exclusion of large files from being cached. By default all files are -; cached. -; (default "0") -opcache.max_file_size = 0 +;opcache.enable_file_override=0 + +; A bitmask, where each bit enables or disables the appropriate OPcache +; passes +;opcache.optimization_level=0x7FFFBFFF + +;opcache.dups_fix=0 + +; The location of the OPcache blacklist file (wildcards allowed). +; Each OPcache blacklist file is a text file that holds the names of files +; that should not be accelerated. The file format is to add each filename +; to a new line. The filename may be a full path or just a file prefix +; (i.e., /var/www/x blacklists all the files and directories in /var/www +; that start with 'x'). Line starting with a ; are ignored (comments). +;opcache.blacklist_filename= + +; Allows exclusion of large files from being cached. By default all files +; are cached. +;opcache.max_file_size=0 ; Check the cache checksum each N requests. -; The default value of "0" means that the checks are disabled. Because -; calculating the checksum impairs performance, this directive should be -; enabled only as part of a debugging process. -; (default "0") -opcache.consistency_checks = 0 +; The default value of "0" means that the checks are disabled. +;opcache.consistency_checks=0 ; How long to wait (in seconds) for a scheduled restart to begin if the cache -; is not being accessed. The OPcache uses this directive to identify a -; situation where there may be a problem with a process. After this time period -; has passed, the OPcache assumes that something has happened and starts -; killing the processes that still hold the locks that are preventing a -; restart. If the log level is 3 or above, a "killed locker" error is recorded -; in the Apache logs when this happens. -; (default "180") -opcache.force_restart_timeout = 180 +; is not being accessed. +;opcache.force_restart_timeout=180 ; OPcache error_log file name. Empty string assumes "stderr". -; (default "" which means stderr) -opcache.error_log = "" +;opcache.error_log= ; All OPcache errors go to the Web server log. -; By default, only fatal errors (level 0) or errors (level 1) are logged. You -; can also enable warnings (level 2), info messages (level 3) or debug messages -; (level 4). -; (default "1") -opcache.log_verbosity_level = 1 +; By default, only fatal errors (level 0) or errors (level 1) are logged. +; You can also enable warnings (level 2), info messages (level 3) or +; debug messages (level 4). +;opcache.log_verbosity_level=1 ; Preferred Shared Memory back-end. Leave empty and let the system decide. -; (default "") -opcache.preferred_memory_model = "" +;opcache.preferred_memory_model= ; Protect the shared memory from unexpected writing during script execution. ; Useful for internal debugging only. -; (default "0") -opcache.protect_memory = 0 +;opcache.protect_memory=0 + +; Allows calling OPcache API functions only from PHP scripts which path is +; started from specified string. The default "" means no restriction +;opcache.restrict_api= ; Mapping base of shared memory segments (for Windows only). All the PHP ; processes have to map shared memory into the same address space. This ; directive allows to manually fix the "Unable to reattach to base address" ; errors. -;opcache.mmap_base = "" +;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. +;opcache.file_cache= + +; Enables or disables opcode caching in shared memory. +;opcache.file_cache_only=0 + +; Enables or disables checksum validation when script loaded from file cache. +;opcache.file_cache_consistency_checks=1 + +; Implies opcache.file_cache_only=1 for a certain process that failed to +; reattach to the shared memory (for Windows only). Explicitly enabled file +; cache is required. +;opcache.file_cache_fallback=1 + +; Enables or disables copying of PHP code (text segment) into HUGE PAGES. +; This should improve performance, but requires appropriate OS configuration. +;opcache.huge_code_pages=1 + +; Validate cached file permissions. +;opcache.validate_permission=0 + +; Prevent name collisions in chroot'ed environment. +;opcache.validate_root=0 + +; 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