一直帮老板搬运代码!!!
全部博文(116)
发布时间:2013-05-18 12:18:00
说明:这里是把nginx的定时器完全抽取出来(不过实现单线程的处理,如果多线程得把源码拿过来添加锁的那部分就行)ngx_eventtimer.h 头文件#pragma once#ifdef WIN32#else#include <unistd.h>#include <sys/time.h>#include <stdint.h>#include <sys/types.h>#endif#include "../common/pubinclude.h".........【阅读全文】
发布时间:2013-02-22 11:31:17
//看一下接收和发送长度//客户端接收n = c->recv(c, b->last, size);0x775180 "GET / HTTP/1.1\r\nHost: localhost:8888\r\nUser-Agent: Mozilla/5.0 (X11; U; Linux x86_64; zh-CN; rv:1.9.2.9) Gecko/20110412 CentOS/3.6.9-2.el6.centos Firefox/3.6.9\r\nAccept: text/html,application/xhtml+xml,"...//客户端发.........【阅读全文】
发布时间:2013-02-21 14:30:47
nginx外围链接数的控制是,总连接数的1/8来负载均衡;但如果很多个进程内处理的连接数超过所有可用链接数,怎么办?下面就来看nginx对于进程内链接数量满的处理:1、后端服务器//代理服务器接受完毕后,发送完毕的时候也没有ngx_reusable_connection(c, 1),因为接受后端完毕后,del_conn了。ngx_reusable_connectio.........【阅读全文】
发布时间:2013-02-20 19:10:51
//错误总结 //运行前(init循环前和发送数据到客户端前,会组合头)//程序运行的时候,对发送消息头进行初始化组合,反向代理时调用ngx_init_cycle(ngx_cycle_t *old_cycle)ngx_conf_parse(ngx_conf_t *cf, ngx_str_t *filename)ngx_conf_handler(ngx_conf_t *cf, ngx_int_t last)rv = cmd->set(cf, cmd, conf);// .........【阅读全文】