{"id":7441,"date":"2021-04-08T11:22:37","date_gmt":"2021-04-08T03:22:37","guid":{"rendered":"https:\/\/blog.hoyo.idv.tw\/?p=7441"},"modified":"2023-02-14T15:08:11","modified_gmt":"2023-02-14T07:08:11","slug":"php-7-opcache","status":"publish","type":"post","link":"https:\/\/blog.hoyo.idv.tw\/?p=7441","title":{"rendered":"PHP 7 - OpCache"},"content":{"rendered":"<p>--<\/p>\n<ul>\n<li><a href=\"https:\/\/blog.scottchayaa.com\/post\/2019\/01\/13\/php-opcache\/\" target=\"_blank\" rel=\"noopener\">php 7 \u900f\u904eopcache\u63d0\u5347\u57f7\u884c\u6548\u80fd<\/a><\/li>\n<li><a class=\"text-body\" href=\"https:\/\/segmentfault.com\/a\/1190000023648948\" target=\"_blank\" rel=\"noopener\">PHP Opcache \u914d\u7f6e\u4f18\u5316\u5b9e\u6218<\/a><\/li>\n<\/ul>\n<p>--<\/p>\n<h2>\u7d50\u8ad6<\/h2>\n<ol>\n<li>\u4e3b\u8981\u4f5c\u7528\u5728\u63d0\u6607 PHP \u57f7\u884c\u6548\u80fd\uff0c\u4ee5\u53ca\u7c21\u6613\u7684\u7a0b\u5f0f\u52a0\u5bc6<\/li>\n<li>\u4f7f\u7528 OpCode \u52a0\u5bc6\u53ef\u4ee5\u4fdd\u8b77\u7a0b\u5f0f\u908f\u8f2f\uff0c\u4e0d\u80fd\u4fdd\u8b77\u300c\u7a0b\u5f0f\u5167\u7684\u5b57\u4e32\u300d<\/li>\n<\/ol>\n<p>--<\/p>\n<h2>php.ini<\/h2>\n<pre class=\"lang:default decode:true\"># vi \/etc\/php\/7.4\/apache2\/php.ini<\/pre>\n<pre class=\"lang:default decode:true\">[opcache]\r\nopcache.enable=1\r\nopcache.save_comments=0\r\nopcache.file_cache=\/opt\/Server\/OpCache\r\nopcache.validate_timestamps=0\r\nopcache.revalidate_freq=0\r\nopcache.max_accelerated_files=4000\r\n<\/pre>\n<ul>\n<li>opcache.enable=1 ; \u555f\u7528 OpCache<\/li>\n<li>opcache.save_comments=0 ; \u95dc\u9589 comments<\/li>\n<li>opcache.file_cache=\/opt\/Server\/OpCache ; \u8a2d\u5b9a OpCache Cache \u8def\u5f91<\/li>\n<li>opcache.validate_timestamps=0 ; \u95dc\u9589\u6a94\u6848\u66f4\u65b0\u6aa2\u67e5\uff0c\u914d\u5408\u4e0b\u9762\u7684\u7a0b\u5f0f\u4fdd\u8b77<\/li>\n<li>opcache.revalidate_freq=0 ; \u6a94\u6848\u66f4\u65b0\u6aa2\u67e5\u6642\u9593<\/li>\n<li>opcache.max_accelerated_files=4000 ; \u6700\u5927 cache \u6a94\u6848\u6578\uff0c\u9700\u8981\u5927\u65bc\u7e3d .php \u6578\u91cf<\/li>\n<\/ul>\n<p>\u91cd\u65b0\u555f\u52d5 apache2 \u670d\u52d9<\/p>\n<pre class=\"lang:default decode:true\"># systemctl restart apache2<\/pre>\n<p>--<\/p>\n<h2>\u4fdd\u8b77\u7a0b\u5f0f\u4f5c\u6cd5<\/h2>\n<ul>\n<li><a href=\"https:\/\/www.php.net\/manual\/zh\/opcache.preloading.php\" target=\"_blank\" rel=\"noopener\">OPcache Preloading<\/a><\/li>\n<li><a class=\"question-hyperlink\" href=\"https:\/\/stackoverflow.com\/questions\/4470673\/bash-find-exec-and-echo\" target=\"_blank\" rel=\"noopener\">bash, find, exec and echo<\/a><\/li>\n<\/ul>\n<p>\u5148\u5c07\u6240\u6709 .php \u6a94\u6848\u7de8\u8b6f\u6210 OpCache \u4e4b\u5f8c\u5c31\u53ef\u4ee5\u5c07 .php \u539f\u59cb\u78bc\u6a94\u6848\u6e05\u7a7a\u6216\u662f\u586b\u5165\u4e0d\u76f8\u95dc\u5167\u5bb9<\/p>\n<p>\u4f7f\u7528 PHP \u5b98\u7db2\u7bc4\u4f8b\u7a0d\u52a0\u4fee\u6539\uff0c\u5c07\u00a0require_once \u66ff\u63db\u70ba\u00a0opcache_compile_file()\uff0c\u5b98\u7db2\u6709\u91dd\u5c0d\u5169\u8005\u4e4b\u9593\u7684\u5dee\u7570\u8aaa\u660e\uff0c\u8acb\u6839\u64da\u5be6\u969b\u60c5\u6cc1\u9078\u7528<\/p>\n<pre class=\"lang:default decode:true\">&lt;?php\r\nopcache_reset();\r\n$directory = new RecursiveDirectoryIterator(__DIR__ . '\/');\r\n$fullTree = new RecursiveIteratorIterator($directory);\r\n$phpFiles = new RegexIterator($fullTree, '\/.+((?&lt;!Test)+\\.php$)\/i', RecursiveRegexIterator::GET_MATCH);\r\n\r\nforeach ($phpFiles as $key =&gt; $file) {\r\n    opcache_compile_file($file[0]);\r\n}<\/pre>\n<p>\u5728\u7db2\u8def\u6839\u76ee\u9304\u57f7\u884c\u4ee5\u4e0b\u57f7\u884c\u5373\u53ef\u5c07\u6240\u6709 .php \u6a94\u6848\u5167\u5bb9\u6e05\u7a7a<\/p>\n<pre class=\"lang:default decode:true\"># find -name '*.php' -type f -exec sh -c 'echo \"&lt;?php\" &gt; {} ' \\;<\/pre>\n<p>--<\/p>\n<h2>\u66f4\u65b0<\/h2>\n<ul>\n<li><a href=\"https:\/\/www.php.net\/manual\/zh\/opcache.configuration.php\" target=\"_blank\" rel=\"noopener\">OPcache \u5b89\u88c5\uff0f\u914d\u7f6e<\/a><\/li>\n<\/ul>\n<p>\u56e0\u70ba\u4f7f\u7528\u4e86\u7981\u7528\u6642\u9593\u6233\u6aa2\u67e5\uff0c\u4ee5\u53ca\u5c07\u539f\u59cb\u78bc\u6e05\u7a7a\uff0c\u56e0\u6b64\u66f4\u65b0\u6642\uff0c\u5fc5\u9808\u7531\u958b\u767c\u4e3b\u6a5f\u63d0\u4f9b .php.bin \u6a94\uff0cOpCache \u6a94\u6848\u7686\u662f www-data \u4f7f\u7528\u8005\u6b0a\u9650\uff0c\u53ef\u4ee5\u4f7f\u7528 tar \u6253\u5305\u53ca\u9084\u539f<\/p>\n<p>.php.bin \u6a94\u6848\u66f4\u65b0\u5f8c\uff0c\u5fc5\u9808\u4f7f\u7528\u00a0opcache_reset() \u6216 opcache_invalidate() \u4f86\u555f\u7528\u65b0\u7684 .php.bin \u6a94<\/p>\n<p>--<\/p>\n<h2>\u8a08\u7b97 php \u6a94\u6848\u6578\u91cf<\/h2>\n<pre class=\"lang:default decode:true\"># find -name '*.php' -type f | wc -l\r\n766<\/pre>\n<p>--<\/p>\n<h2>OpCache \u9577\u76f8<\/h2>\n<p><a href=\"https:\/\/blog.hoyo.idv.tw\/wp-content\/uploads\/2020\/09\/20200928_142111.png\" data-rel=\"lightbox-image-0\" data-rl_title=\"\" data-rl_caption=\"\" title=\"\"><img loading=\"lazy\" class=\"alignnone size-medium wp-image-7444\" src=\"https:\/\/blog.hoyo.idv.tw\/wp-content\/uploads\/2020\/09\/20200928_142111-300x140.png\" alt=\"\" width=\"300\" height=\"140\" srcset=\"https:\/\/blog.hoyo.idv.tw\/wp-content\/uploads\/2020\/09\/20200928_142111-300x140.png 300w, https:\/\/blog.hoyo.idv.tw\/wp-content\/uploads\/2020\/09\/20200928_142111-768x359.png 768w, https:\/\/blog.hoyo.idv.tw\/wp-content\/uploads\/2020\/09\/20200928_142111-1024x478.png 1024w, https:\/\/blog.hoyo.idv.tw\/wp-content\/uploads\/2020\/09\/20200928_142111-500x233.png 500w, https:\/\/blog.hoyo.idv.tw\/wp-content\/uploads\/2020\/09\/20200928_142111.png 1101w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/p>\n<p>\u7bc0\u9304\u5167\u5bb9<\/p>\n<p><a href=\"https:\/\/blog.hoyo.idv.tw\/wp-content\/uploads\/2021\/04\/20210408_112110.png\" data-rel=\"lightbox-image-1\" data-rl_title=\"\" data-rl_caption=\"\" title=\"\"><img loading=\"lazy\" class=\"alignnone size-medium wp-image-8102\" src=\"https:\/\/blog.hoyo.idv.tw\/wp-content\/uploads\/2021\/04\/20210408_112110-272x300.png\" alt=\"\" width=\"272\" height=\"300\" srcset=\"https:\/\/blog.hoyo.idv.tw\/wp-content\/uploads\/2021\/04\/20210408_112110-272x300.png 272w, https:\/\/blog.hoyo.idv.tw\/wp-content\/uploads\/2021\/04\/20210408_112110.png 705w\" sizes=\"(max-width: 272px) 100vw, 272px\" \/><\/a><\/p>\n<p><a href=\"https:\/\/blog.hoyo.idv.tw\/wp-content\/uploads\/2021\/04\/20210408_112155.png\" data-rel=\"lightbox-image-2\" data-rl_title=\"\" data-rl_caption=\"\" title=\"\"><img loading=\"lazy\" class=\"alignnone size-medium wp-image-8103\" src=\"https:\/\/blog.hoyo.idv.tw\/wp-content\/uploads\/2021\/04\/20210408_112155-251x300.png\" alt=\"\" width=\"251\" height=\"300\" srcset=\"https:\/\/blog.hoyo.idv.tw\/wp-content\/uploads\/2021\/04\/20210408_112155-251x300.png 251w, https:\/\/blog.hoyo.idv.tw\/wp-content\/uploads\/2021\/04\/20210408_112155.png 704w\" sizes=\"(max-width: 251px) 100vw, 251px\" \/><\/a><\/p>\n<p>--<\/p>\n<h2>Preload<\/h2>\n<p>PHP 7.4 \u589e\u52a0\u4e86\u00a0opcache.preload &amp;\u00a0opcache.preload_user \u53c3\u6578\uff0c\u56e0\u70ba\u539f\u59cb\u78bc\u5f8c\u4f86\u6703\u6e05\u7a7a\uff0c\u56e0\u6b64\u4e0d\u9069\u7528\u6b64\u53c3\u6578<\/p>\n<p>--<\/p>\n<div class=\"pvc_clear\"><\/div>\n<p class=\"pvc_stats all \" data-element-id=\"7441\" style=\"\"><i class=\"pvc-stats-icon medium\" aria-hidden=\"true\"><svg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"chart-bar\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\" class=\"svg-inline--fa fa-chart-bar fa-w-16 fa-2x\"><path fill=\"currentColor\" d=\"M396.8 352h22.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-192 0h22.4c6.4 0 12.8-6.4 12.8-12.8V140.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h22.4c6.4 0 12.8-6.4 12.8-12.8V204.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zM496 400H48V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16zm-387.2-48h22.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8z\" class=\"\"><\/path><\/svg><\/i> &nbsp;2,552&nbsp;total views<\/p>\n<div class=\"pvc_clear\"><\/div>\n","protected":false},"excerpt":{"rendered":"<p>-- php 7 \u900f\u904eopca...<\/p>\n<div class=\"pvc_clear\"><\/div>\n<p class=\"pvc_stats all \" data-element-id=\"7441\" style=\"\"><i class=\"pvc-stats-icon medium\" aria-hidden=\"true\"><svg aria-hidden=\"true\" focusable=\"false\" data-prefix=\"far\" data-icon=\"chart-bar\" role=\"img\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" viewBox=\"0 0 512 512\" class=\"svg-inline--fa fa-chart-bar fa-w-16 fa-2x\"><path fill=\"currentColor\" d=\"M396.8 352h22.4c6.4 0 12.8-6.4 12.8-12.8V108.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v230.4c0 6.4 6.4 12.8 12.8 12.8zm-192 0h22.4c6.4 0 12.8-6.4 12.8-12.8V140.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v198.4c0 6.4 6.4 12.8 12.8 12.8zm96 0h22.4c6.4 0 12.8-6.4 12.8-12.8V204.8c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v134.4c0 6.4 6.4 12.8 12.8 12.8zM496 400H48V80c0-8.84-7.16-16-16-16H16C7.16 64 0 71.16 0 80v336c0 17.67 14.33 32 32 32h464c8.84 0 16-7.16 16-16v-16c0-8.84-7.16-16-16-16zm-387.2-48h22.4c6.4 0 12.8-6.4 12.8-12.8v-70.4c0-6.4-6.4-12.8-12.8-12.8h-22.4c-6.4 0-12.8 6.4-12.8 12.8v70.4c0 6.4 6.4 12.8 12.8 12.8z\" class=\"\"><\/path><\/svg><\/i> &nbsp;2,552&nbsp;total views<\/p>\n<div class=\"pvc_clear\"><\/div>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[260],"tags":[],"_links":{"self":[{"href":"https:\/\/blog.hoyo.idv.tw\/index.php?rest_route=\/wp\/v2\/posts\/7441"}],"collection":[{"href":"https:\/\/blog.hoyo.idv.tw\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/blog.hoyo.idv.tw\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/blog.hoyo.idv.tw\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/blog.hoyo.idv.tw\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=7441"}],"version-history":[{"count":17,"href":"https:\/\/blog.hoyo.idv.tw\/index.php?rest_route=\/wp\/v2\/posts\/7441\/revisions"}],"predecessor-version":[{"id":8177,"href":"https:\/\/blog.hoyo.idv.tw\/index.php?rest_route=\/wp\/v2\/posts\/7441\/revisions\/8177"}],"wp:attachment":[{"href":"https:\/\/blog.hoyo.idv.tw\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=7441"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/blog.hoyo.idv.tw\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=7441"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/blog.hoyo.idv.tw\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=7441"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}