가상 호스트 PHP의 Memory_limit는 단일 PHP 스크립트의 단일 실행에 사용 가능한 최대 메모리 제한입니다. 기본 제한은 256MB이고 최대값은 512MB로 조정될 수 있습니다. 아래 편집기에서는 memory_limit를 사용하여 PHP 프로세스의 메모리 사용량을 제한하는 방법을 소개합니다.
memory_limit는 이름에서 알 수 있듯이 PHP 프로세스의 메모리 사용량을 제한합니다. 예:
magento2의 시스템 요구 사항에는 PHP memory_limit에 대한 제한이 있으며 이는 512M보다 낮을 수 없습니다. (기본값은 128M입니다. 변경하지 않으면 Magento의 백그라운드 처리 로직이 정상적으로 실행되지 않습니다.)
PHP 공식 홈페이지 설명을 참고하세요
스크립트가 허용하는 최대 메모리 양을 바이트 단위로 설정합니다. 이는 스크립트가 할당할 수 있는 최대 메모리 양을 바이트 단위로 설정합니다. 이는 잘못 작성된 스크립트가 서버에서 사용 가능한 모든 메모리를 소모하는 것을 방지하는 데 도움이 됩니다. 메모리 제한이 없으면 이 지시어를 -1로 설정하세요.
memory_limit 값, 즉 단일 PHP 프로세스가 차지하는 메모리가 높을수록 메모리가 많을수록 시스템이 동시에 처리할 수 있는 요청이 적어집니다. 예를 들어, 2G 메모리
memory_limit가 128M으로 설정된 시스템은 동시에 최대 16개의 요청을 처리할 수 있습니다. memory_limit가 256M로 설정된 경우 memory_limit는 동시에 최대 8개의 요청을 처리할 수 있습니다. 512M으로 설정하면 동시에 최대 4개의 요청을 처리할 수 있습니다.
memory_limit 값이 클수록 좋을까요?
물론 아닙니다. memory_limit는 주로 프로그램 버그나 무한 루프가 많은 양의 메모리를 점유하여 시스템 다운타임을 일으키는 것을 방지하기 위한 것입니다. 다수의 타사 플러그인이나 코드를 도입할 경우 메모리 제한이 매우 필요합니다.
memory_limit는 각 PHP 프로세스가 고정된 양의 메모리를 차지하도록 합니까?
아니면 할당된 메모리의 상한값인가요?
아이디어를 테스트하고, 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 이전에
memory_limit의 기본값은 무엇입니까?
위 내용은 memory_limit를 사용하여 PHP 프로세스의 메모리 사용량을 제한하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!