PS:前段時間配置php-fpm的時候,無意間發現原來它還有兩種行程管理方式。與Apache類似,它的進程數也是可以根據設定分為動態和靜態的。
php-fpm目前主要又兩個分支,分別對應於php-5.2.x的版本和php-5.3.x的版本。在5.2.x的版本中,php-fpm.conf使用的是xml格式,而在新的5.3.x版本中,則是和php.ini一樣的配置風格。
在5.2.x版本中,php-fpm.conf
中對於行程管理號稱是有兩種風格,一種是靜態(static)的,一種是類似apache風格(apache -like)的。
相關學習推薦:php程式設計(影片)
#程式碼如下:
##
Process manager settings <value name=”pm”> Sets style of controling worker process count. Valid values are 'static' and ‘apache-like' <value name=”style”>static</value>
apache-like,啟動的進程數應該是和StartServers指定的一樣。不過經過數次的嘗試,會發現,實際上在這裡將pm的style配置成apache-like沒有起任何作用。也就是說,這裡的apache-like並沒有實現。
不過,在最新的5.3.x的配套php-fpm中,apache風格的進程管理已經被實現了。
; Choose how the process manager will control the number of child processes. ; Possible Values: ; static - a fixed number (pm.max_children) of child processes; ; dynamic - the number of child processes are set dynamically based on the ; following directives: ; pm.max_children - the maximum number of children that can ; be alive at the same time. ; pm.start_servers - the number of children created on startup. ; pm.min_spare_servers - the minimum number of children in 'idle' ; state (waiting to process). If the number ; of 'idle' processes is less than this ; number then some children will be created. ; pm.max_spare_servers - the maximum number of children in 'idle' ; state (waiting to process). If the number ; of 'idle' processes is greater than this ; number then some children will be killed. ; Note: This value is mandatory. ;pm = dynamic pm = static
如果設定成dynamic,則php-fpm進程數是動態的,最開始是pm.start_servers指定的數量,如果請求較多,則會自動增加,保證空閒的進程數不小於
pm. min_spare_servers,如果行程數較多,也會進行對應清理,確保多餘的行程數不多於pm.max_spare_servers。
pm、
pm.max_children、
pm.start_servers、
pm.min_spare_servers和
pm.max_spare_servers。
pm表示使用那種方式,有兩個值可以選擇,就是static(靜態)或dynamic(動態)。在較老的版本中,dynamic被稱為
apache-like。這個要注意看設定檔的說明。
下面4個參數的意思分別為:
程式碼如下:pm.max_children:静态方式下开启的php-fpm进程数量。 pm.start_servers:动态方式下的起始php-fpm进程数量。 pm.min_spare_servers:动态方式下的最小php-fpm进程数量。 pm.max_spare_servers:动态方式下的最大php-fpm进程数量。
pm.max_children這個參數生效。系統會開啟設定數量的php-fpm進程。
如果dm設定為dynamic,那麼pm.max_children參數失效,後面3個參數生效。系統會在php-fpm執行開始的時候啟動
pm.start_servers個php-fpm行程,然後根據系統的需求動態在pm.min_spare_servers和pm.max_spare_servers之間調整php-fpm行程數。
對於記憶體大的伺服器(例如8G以上)來說,指定靜態的max_children其實比較為妥當,因為這樣不需要進行額外的進程數目控制,會提高效率。因為頻繁開關php-fpm程序也會有時滯,所以記憶體夠大的情況下開靜態效果會更好。
pm.min_spare_servers,則建議根據伺服器的負載情況來設置,比較合適的值在5~10之間。
相關推薦:
以上是Nginx使用的php-fpm進程管理方式及最佳化的詳細內容。更多資訊請關注PHP中文網其他相關文章!