OpCache - Magento2 के लिए अनुशंसित कॉन्फ़िगरेशन


10

मैं एक Magento 2 स्टैक के साथ काम कर रहा हूं, मैं अपने कुछ Magento 1 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 सक्षम क्यों नहीं?
मेगेप्सिचियो

जवाबों:


13

opcache.max_accelerated_files=16000Magento 2 के लिए निश्चित रूप से कम है। मेरी Magento 2 स्थापना के लिए
find . -type f -print | xargs grep "<?php" | wc -lदेता है 30736( var/generationफ़ोल्डर में उत्पन्न कोड के साथ और कुछ बाहरी एक्सटेंशन के साथ स्थापित)।
मैं यह निर्धारित opcache.max_accelerated_filesकरने की सलाह देता हूं कि 65406यदि आपके सर्वर में एक एकल मैगनेटो 2 इंस्टॉलेशन है और अन्य PHP साइटें नहीं हैं।
यदि आपके पास सर्वर पर कई 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
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.