Browsed by
Snippet Tag: opcache

PHP opcache

PHP opcache

; enable the opcache opcache.enable=1; ; set validate_timestamps to 1 to cause PHP to check if the file ; has been modified. ; This check will happen every revalidate_freq seconds. ; If a file is older than revalidate_freq seconds AND it has changed ; it will be removed from the cache and recompiled next time the ; page is accessed. opcache.validate_timestamps=1 opcache.revalidate_freq=600 ; set this to 0 to cause PHP to check the timestamps on each access. ; optionally, you…

Read More Read More