opcache-recommended.ini 474 B

1234567891011121314151617
  1. ; NOTE: Restart phpfpm on ANY manual changes to PHP files!
  2. ; opcache
  3. opcache.enable=1
  4. opcache.enable_cli=1
  5. opcache.interned_strings_buffer=16
  6. opcache.max_accelerated_files=10000
  7. opcache.memory_consumption=128
  8. opcache.save_comments=1
  9. opcache.revalidate_freq=1
  10. opcache.validate_timestamps=0
  11. ; JIT
  12. ; Disabled for now due to some PHP segmentation faults observed
  13. ; in certain environments. Possibly some PHP or PHP extension bug.
  14. opcache.jit=disable
  15. opcache.jit_buffer_size=0