您好,登錄后才能下訂單哦!
這篇文章給大家介紹使用memory_limit如何進行限制PHP進程的內存使用,內容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
memory_limit 顧名思義,即限制 PHP 進程對于內存的使用。例如:
magento2 的系統要求里有關于 PHP memory_limit 的限制,不能低于 512M。(默認值為 128M, 如果不更改,會導致 magento 的后臺處理邏輯無法正常執行)
看一下 PHP 官網的解釋
This sets the maximum amount of memory in bytes that a script is allowed to allocate. This helps prevent poorly written scripts for eating up all available memory on a server. Note that to have no memory limit, set this directive to -1.
需要注意的是,memory_limit 的值越高,即單個 PHP 進程占用的內存越多,系統能夠并發處理的請求越少。例如,一個 2G 內存的機器
memory_limit 設為 128M, 則同時最多能處理 16 個請求
memory_limit 設為 256M, 則同時最多能處理 8 個請求
memory_limit 設為 512M, 則同時最多能處理 4 個請求
當然不是,memory_limit 主要是為了防止程序 bug, 或者死循環占用大量的內存,導致系統宕機。在引入大量三方插件,或者代碼時,進行內存限制就非常有必要了。
還是僅僅為分配內存的上限?測試一下
思路,memory_limit 設置為 10M, PHP 請求中初始化一個 2M/20M 的字符串,看看系統進程中內存的占用情況。
Nginx 配置
server {
listen 8093;
root /home/zhongwei/work/test/memory_limit/;
index index.php index.html index.htm;
server_name localhost;
location / {
# try_files $uri $uri/ =404;
try_files $uri $uri/ /index.php?q=$uri&$args;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_param PHP_VALUE "memory_limit = 10M";
fastcgi_pass unix:/run/php/php7.0-fpm.sock;
}
}
PHP 測試文件
<?php
$char_count = 2;
$M = 1024 * 1024;
echo sprintf("Current memory_limit value is: %s.", ini_get('memory_limit'));
echo sprintf('<br/>Amount of memory allocated to PHP: %0.3fM.', memory_get_usage() / $M);
$s = str_repeat("a", $M * $char_count);
//sleep(30);
echo sprintf('<br/>Amount of memory allocated to PHP: %0.3fM.', memory_get_usage() / $M);
echo sprintf('<br/>Total memory allocated from system: %0.3fM.', memory_get_usage($real_usage=true) / $M);
echo '<br/>success';
測試結果
$char_count 為 2 時,即初始化一個占用內存 2M 的字符串,輸出結果為
Current memory_limit value is: 10M.
Amount of memory allocated to PHP: 0.344M.
Amount of memory allocated to PHP: 2.348M.
Total memory allocated from system: 4.004M.
success
$char_count 為 20 時,即初始化一個占用內存 20M 的字符串,輸出結果為
Current memory_limit value is: 10M.
Amount of memory allocated to PHP: 0.346M.
注意,HTTP 狀態碼為 500, 也就是說執行到字符串初始化的時候,PHP 進程被系統干掉了。
看一下 Nginx error.log 中記錄的日志信息
2017/03/01 10:41:23 [error] 6903#6903: *39 FastCGI sent in stderr: "PHP message: PHP Fatal error: Allowed memory size of 10485760 bytes exhausted (tried to allocate 20971552 bytes) in /home/zhongwei/work/test/memory_limit/index.php on line 8
PHP message: PHP Stack trace:
PHP message: PHP 1. {main}() /home/zhongwei/work/test/memory_limit/index.php:0
PHP message: PHP 2. str_repeat() /home/zhongwei/work/test/memory_limit/index.php:8" while reading response header from upstream, client: 127.0.0.1, server: localhost, request: "GET / HTTP/1.1", upstream: "fastcgi://unix:/run/php/php7.0-fpm.sock:", host: "localhost:8093"
實際測試結果說明,memory_limit 只是限制了每個 PHP 進程的內存占用上限,而不是為每個進程分配了固定的內存。所以,并不會因為 memory_limit 設置越大,導致并發數出現降低。
PHP 5.2 之前為 8M
PHP 5.2 為 16M
PHP 5.2 之后的版本為 128M
關于使用memory_limit如何進行限制PHP進程的內存使用就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。