• 技术文章 >php教程 >php手册

    Apache Reference Manual (8)

    2016-06-13 10:13:03原创399
    MaxRequestsPerChild directive
    Syntax: MaxRequestsPerChild number
    Default: MaxRequestsPerChild 0
    Context: server config
    Status: core
    The MaxRequestsPerChild directive sets the limit on the number of requests that an individual child server process will handle. After MaxRequestsPerChild requests, the child process will die. If MaxRequestsPerChild is 0, then the process will never expire.
    Setting MaxRequestsPerChild to a non-zero limit has two beneficial effects:
    it limits the amount of memory that process can consume by (accidental) memory leakage;
    by giving processes a finite lifetime, it helps reduce the number of processes when the server load reduces.
    This directive has no effect on Win32.
    NOTE: For KeepAlive requests, only the first request is counted towards this limit. In effect, it changes the behavior to limit the number of connections per child.
    --------------------------------------------------------------------------------
    MaxSpareServers directive
    Syntax: MaxSpareServers number
    Default: MaxSpareServers 10
    Context: server config
    Status: core
    The MaxSpareServers directive sets the desired maximum number of idle child server processes. An idle process is one which is not handling a request. If there are more than MaxSpareServers idle, then the parent process will kill off the excess processes.
    Tuning of this parameter should only be necessary on very busy sites. Setting this parameter to a large number is almost always a bad idea.
    This directive has no effect when used with the Apache Web server on a Microsoft Windows platform.
    See also MinSpareServers and StartServers.
    --------------------------------------------------------------------------------
    MinSpareServers directive
    Syntax: MinSpareServers number
    Default: MinSpareServers 5
    Context: server config
    Status: core
    The MinSpareServers directive sets the desired minimum number of idle child server processes. An idle process is one which is not handling a request. If there are fewer than MinSpareServers idle, then the parent process creates new children at a maximum rate of 1 per second.
    声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。
    上一篇:php安全配置 关闭php执行系统指令函数 下一篇:PHP防CC攻击实现代码总结
    VIP课程(WEB全栈开发)

    相关文章推荐

    • 【活动】充值PHP中文网VIP即送云服务器• swfupload 多文件上传实现代码• 简化的实现方法(限制为同一会话页面)• Win200下PHP服务器的简单配置• PHP.MVC的模板标签系统(一)_php基础• Windows 环境下的PHP5 与 Apache 服务器的配置
    1/1

    PHP中文网