在nginx listen配置项的说明中有一个选项: deferred -- indicates to use that postponed accept(2) on Linux with. the aid of option TCP_DEFER_ACCEPT. 我们知道通常影响服务端性能的四大原因有:内存拷贝.内存分配.系统调用,进程切换.而nginx的deffered选项的作用是用来降低服务端进行epoll_ctl.epoll_wait(linux下)的次数(系统调用)和降低服务端保持的连接…
# ./configure --help --help print this message --prefix=PATH set installation prefix --sbin-path=PATH set nginx binary pathname --modules-path=PATH set modules path --conf-path=PATH set nginx.conf pathname --error-log-path=PATH set error log pathname…