0
我的新鮮專用服務器出現了一個非常奇怪的問題。 它安裝了Plesk 11,我試圖在其中安裝APC。一切都很順利,我可以看到phpinfo()
上的APC配置,但我無法對其進行配置!我想盡一切辦法,但在phpinfo中顯示的配置不會改變。它不顯示apc.ini
配置文件已加載到其他ini文件中,但如果我在文件內註釋extension=apc.so
行,則APC會關閉。無法配置PHP的APC
這裏說到我apc.ini文件:
[APC]
extension=apc.so
apc.enabled = 1 # Turn APC cache on
apc.optimization = 0 # Experimental keep off
apc.shm_segments = 1 # Shared memory segments
apc.shm_size = 256M # Max shared memory dependent on OS
apc.ttl = 7200
apc.user_ttl = 7200
apc.num_files_hint = 1024
apc.mmap_file_mask = /tmp/apc.XXXXXX
apc.enable_cli = 1 # Allow command line php to function
apc.cache_by_default = 1 # Enabled, 0 for filters
apc.max_file_size = 10M # Maximum cached file size
apc.stat = 1 # 1 for dev, 0 for production, whether the source file is checke$
#apc.include_once_override = 1 # Use PHP5.3+ for include_once optimization
在此先感謝和我的英語不好對不起,
維尼
使用文件apc.php檢查apc的執行方式。如果您擁有多個網站,則256M可能很低。確保APC比實際使用的RAM高出20%。 – bokan