00-performance.ini 1008 B

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