内存管理 - Linux每个进程的HEAP SIZE限制是多少?
PHP中文网
PHP中文网 2017-04-17 14:00:49
0
1
748

执行 ulimit -a 命令之后, 得到如下结果:

core file size          (blocks, -c) 0
data seg size           (kbytes, -d) unlimited
scheduling priority             (-e) 0
file size               (blocks, -f) unlimited
pending signals                 (-i) 7782
max locked memory       (kbytes, -l) 64
max memory size         (kbytes, -m) unlimited
open files                      (-n) 1024
pipe size            (512 bytes, -p) 8
POSIX message queues     (bytes, -q) 819200
real-time priority              (-r) 0
stack size              (kbytes, -s) 8192
cpu time               (seconds, -t) unlimited
max user processes              (-u) 7782
virtual memory          (kbytes, -v) unlimited
file locks                      (-x) unlimited

stack size 是对应的内存栈区限制,max memory size这一行是不是就是对应的heap size限制

PHP中文网
PHP中文网

认证高级PHP讲师

reply all(1)
大家讲道理

max memory size is the maximum value of memory occupied by the application (but it is invalid in many systems), and is not entirely a limit on the heap size.

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template