mirror of
https://github.com/nginx/nginx.git
synced 2024-12-15 13:28:59 +08:00
Events: the "accept_mutex" directive is turned off by default.
Now it is believed that the accept mutex brings more harm than benefits. Especially in various benchmarks it often results in situation where only one worker grabs all connections.
This commit is contained in:
parent
6c2b086d0e
commit
46dd747c9e
@ -1261,7 +1261,7 @@ ngx_event_core_init_conf(ngx_cycle_t *cycle, void *conf)
|
||||
ngx_conf_init_ptr_value(ecf->name, event_module->name->data);
|
||||
|
||||
ngx_conf_init_value(ecf->multi_accept, 0);
|
||||
ngx_conf_init_value(ecf->accept_mutex, 1);
|
||||
ngx_conf_init_value(ecf->accept_mutex, 0);
|
||||
ngx_conf_init_msec_value(ecf->accept_mutex_delay, 500);
|
||||
|
||||
return NGX_CONF_OK;
|
||||
|
Loading…
Reference in New Issue
Block a user