Apache HTTP Server 版本2.2
說明 | This Multi-Processing Module is optimized for BeOS. |
---|---|
狀態(tài) | MPM |
模塊名 | mpm_beos_module |
源文件 | beos.c |
This Multi-Processing Module (MPM) is the default for BeOS. It uses a single control process which creates threads to handle requests.
說明 | Limit on the number of requests that an individual thread will handle during its life |
---|---|
語法 | MaxRequestsPerThread number |
默認值 | MaxRequestsPerThread 0 |
作用域 | server config |
狀態(tài) | MPM |
模塊 | beos |
MaxRequestsPerThread
directive sets
the limit on the number of requests that an individual server thread
will handle. After MaxRequestsPerThread
requests, the thread will die. If MaxRequestsPerThread
is 0
, then the thread
will never expire.
Setting MaxRequestsPerThread
to a
non-zero limit has two beneficial effects:
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 thread.