Merge pull request #113 from andreiashu/enableOpcacheRevalidatePath

Enable opcache.revalidate_path setting
This commit is contained in:
Jeff Geerling 2016-06-08 23:11:39 -05:00
commit 7739671037
3 changed files with 3 additions and 0 deletions

View File

@ -94,6 +94,7 @@ The OpCache is included in PHP starting in version 5.5, and the following variab
php_opcache_max_accelerated_files: "4096"
php_opcache_max_wasted_percentage: "5"
php_opcache_validate_timestamps: "1"
php_opcache_revalidate_path: "1"
php_opcache_revalidate_freq: "2"
php_opcache_max_file_size: "0"

View File

@ -25,6 +25,7 @@ php_opcache_interned_strings_buffer: "16"
php_opcache_max_accelerated_files: "4096"
php_opcache_max_wasted_percentage: "5"
php_opcache_validate_timestamps: "1"
php_opcache_revalidate_path: "0"
php_opcache_revalidate_freq: "2"
php_opcache_max_file_size: "0"
php_opcache_blacklist_filename: ""

View File

@ -6,6 +6,7 @@ opcache.interned_strings_buffer={{ php_opcache_interned_strings_buffer }}
opcache.max_accelerated_files={{ php_opcache_max_accelerated_files }}
opcache.max_wasted_percentage={{ php_opcache_max_wasted_percentage }}
opcache.validate_timestamps={{ php_opcache_validate_timestamps }}
opcache.revalidate_path={{ php_opcache_revalidate_path }}
opcache.revalidate_freq={{ php_opcache_revalidate_freq }}
opcache.max_file_size={{ php_opcache_max_file_size }}
{% if php_opcache_blacklist_filename != '' %}