123456789101112131415161718192021222324252627 |
- zend_extension=opcache.so
- ; we want fast cli scripts too
- opcache.enable_cli=On
- ; fast shutdown because we skip free() calls
- opcache.fast_shutdown=On
- ; The amount of memory used to store interned strings, in megabytes
- opcache.interned_strings_buffer=8
- ; The maximum number of keys (and therefore scripts) in the OPcache hash table
- opcache.max_accelerated_files=20000
- ; The size of the shared memory storage used by OPcache, in megabytes
- opcache.memory_consumption=128
- ; If enabled, OPcache will check for updated scripts every opcache.revalidate_freq seconds. When
- ; this directive is disabled, you must reset OPcache manually via opcache_reset(),
- ; opcache_invalidate() or by restarting the Web server for changes to the filesystem to take effect.
- opcache.validate_timestamps=Off
- ; Determines the size of the realpath cache to be used by PHP. This value
- ; should be increased on systems where PHP opens many files, to reflect the
- ; quantity of the file operations performed.
- realpath_cache_size=4096K
|