nginx架构与实现
时间:2021-07-01 10:21:17
帮助过:10人阅读
master process startup
worker process startup
http://nginx.org/
Tengine (Taobao forked nginx version)http://www.zhuzhaoyuan.com/
http://www.aosabook.org/en/nginx.html
nginx internal [
推荐好文]http://www.zhuzhaoyuan.com/download/nginx/nginx_internals.pdf
架构与OC类似OC中每个worker process有独立的listener porting, nginx中共享listener porting... nginx多进程通过对listening fd的写锁进行互斥accept
shared-memory inter-process communicationposted-event
tcp_nodelay, 禁用Nagle tcp_cork, 类似Nagle,小包拼成打包发送tcp_defer_accept, 接收到SYN马上accept连接tcp_quickack, 马上ack(通常演示200ms)版权声明:本文为博主原创文章,未经博主允许不得转载。
以上就介绍了nginx架构与实现,包括了方面的内容,希望对PHP教程有兴趣的朋友有所帮助。