OpCache-Magento2の推奨構成


10

Magento 2スタックを使用しています。Magento1 OpCache構成の一部を再利用しています。コメントを有効にする必要があることはすでに学習しましたが、他の値を改善できると確信しているので、現在の構成は次のとおりです。

[opcache]
opcache.enable=1
opcache.enable_cli=0
opcache.memory_consumption=256
opcache.interned_strings_buffer=12
opcache.max_accelerated_files=65406 // thanks Mage2.Pro!
;opcache.max_wasted_percentage=5
;opcache.use_cwd=1
opcache.validate_timestamps=0
;opcache.revalidate_freq=2
;opcache.revalidate_path=0
;opcache.save_comments=0
;opcache.load_comments=0
opcache.fast_shutdown=1
opcache.enable_file_override=1
;opcache.optimization_level=0xffffffff
;opcache.inherited_hack=1
;opcache.dups_fix=0
;opcache.blacklist_filename=
;opcache.max_file_size=0
;opcache.consistency_checks=0
;opcache.force_restart_timeout=180
opcache.error_log=/var/log/php5/php5-opcache.error.log
opcache.log_verbosity_level=3
;opcache.preferred_memory_model=
;opcache.protect_memory=0

注: 質問の(開かれた状態で)構成ブロックをすべての回答で編集し、すべてのユーザーにとって役立つようにします。また、問題が発生したり、サイトのルールに違反したりする場合は、繰り返しの提案も避けます。私に知らせて。


CLIでopcacheを有効にしないのはなぜですか?
MagePsycho 2017

回答:


13

opcache.max_accelerated_files=16000Magentoの2.のために間違いなく低いですが
find . -type f -print | xargs grep "<?php" | wc -l、私を与える30736(に生成されたコードと私のMagento 2インストール用var/generationフォルダといくつかの外部の拡張機能がインストールされています)。サーバーに単一のMagento 2インストールがあり、他のPHPサイトがない場合は、に
設定opcache.max_accelerated_filesすることをお勧めし65406ます。
サーバー上に複数のPHPサイトがある場合は、値を検討してください130986


0

また、php7で追加された次の設定を含めることをお勧めします。

; Allows calling OPcache API functions only from PHP scripts which path is
; started from specified string. The default "" means no restriction
;opcache.restrict_api=

; Mapping base of shared memory segments (for Windows only). All the PHP
; processes have to map shared memory into the same address space. This
; directive allows to manually fix the "Unable to reattach to base address"
; errors.
;opcache.mmap_base=

; Enables and sets the second level cache directory.
; It should improve performance when SHM memory is full, at server restart or
; SHM reset. The default "" disables file based caching.
;opcache.file_cache=

; Enables or disables opcode caching in shared memory.
;opcache.file_cache_only=0

; Enables or disables checksum validation when script loaded from file cache.
;opcache.file_cache_consistency_checks=1

; Implies opcache.file_cache_only=1 for a certain process that failed to
; reattach to the shared memory (for Windows only). Explicitly enabled file
; cache is required.
;opcache.file_cache_fallback=1

; Enables or disables copying of PHP code (text segment) into HUGE PAGES.
; This should improve performance, but requires appropriate OS configuration.
;opcache.huge_code_pages=1
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.