中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

PHP中怎么利用memory_limit限制進程的內存

發布時間:2021-06-23 17:28:33 來源:億速云 閱讀:431 作者:Leah 欄目:編程語言

PHP中怎么利用memory_limit限制進程的內存,相信很多沒有經驗的人對此束手無策,為此本文總結了問題出現的原因和解決方法,通過這篇文章希望你能解決這個問題。

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 的值是越大越好么?

當然不是,memory_limit 主要是為了防止程序 bug, 或者死循環占用大量的內存,導致系統宕機。在引入大量三方插件,或者代碼時,進行內存限制就非常有必要了。

memory_limit 會使每個 PHP process 都占用固定的內存?

還是僅僅為分配內存的上限?測試一下

思路,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 設置越大,導致并發數出現降低。

memory_limit 的默認值為多少

  • PHP 5.2 之前為 8M

  • PHP 5.2 為 16M

  • PHP 5.2 之后的版本為 128M

看完上述內容,你們掌握PHP中怎么利用memory_limit限制進程的內存的方法了嗎?如果還想學到更多技能或想了解更多相關內容,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

徐州市| 潍坊市| 重庆市| 遂平县| 竹北市| 乡城县| 长宁县| 叶城县| 桃园市| 商都县| 微山县| 琼结县| 大竹县| 宣恩县| 科尔| 甘洛县| 沂源县| 宁阳县| 涟水县| 涞水县| 龙泉市| 蕲春县| 莒南县| 桐庐县| 浙江省| 福海县| 德格县| 普格县| 金门县| 张北县| 湟源县| 莱阳市| 霸州市| 淄博市| 理塘县| 图木舒克市| 临潭县| 铅山县| 泸水县| 汤阴县| 隆昌县|