上一页 1 ··· 50 51 52 53 54 55 56 57 58 ··· 64 下一页
该文被密码保护。 阅读全文
posted @ 2020-01-06 22:19 codestacklinuxer 阅读(271) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2020-01-06 22:17 codestacklinuxer 阅读(355) 评论(0) 推荐(0) 编辑
摘要: POSIX的shm_open()在/dev/shm/下打开一个文件,用mmap()映射到进程自己的内存地址 System V的shmget()得到一个共享内存对象的id,用shmat()映射到进程自己的内存地址 目前这里主要看 System V的设计 这里先说一说设计思路!! 进程A和进程B 由于地 阅读全文
posted @ 2020-01-06 22:14 codestacklinuxer 阅读(807) 评论(0) 推荐(0) 编辑
摘要: 在 http 配置块中,我们配置了 http 连接相关的信息,HTTP 框架也正是从这里启动的 在 nginx 初始化的过程中,执行了 ngx_init_cycle 函数,其中进行了配置文件解析,调用了 ngx_conf_parse 函数 函数 ngx_conf_handler 根据配置项的 com 阅读全文
posted @ 2020-01-05 22:56 codestacklinuxer 阅读(439) 评论(0) 推荐(0) 编辑
摘要: tcp 三次握手成功后,listen fd 可读,在process_event_timer 中调用rev->handler(rev)处理; 其回调函数为: ngx_event_accept /* 如何建立新连接 上文提刭过,处理新连接事件的回调函数是ngx_event_accept,其原型如下。vo 阅读全文
posted @ 2020-01-05 20:33 codestacklinuxer 阅读(400) 评论(0) 推荐(0) 编辑
摘要: 1. epoll模块命令集 ngx_epoll_commands epoll模块上下文 ngx_epoll_module_ctx epoll模块配置 ngx_epoll_module static ngx_command_t ngx_epoll_commands[] = { /* 在调用epoll_ 阅读全文
posted @ 2020-01-05 20:03 codestacklinuxer 阅读(631) 评论(0) 推荐(0) 编辑
摘要: | (ngx_worker_process_cycle->ngx_worker_process_init) | >for(;;) {ngx_process_events_and_timers()} ngx_start_worker_processes | ngx_processes[]相关的操作赋值 阅读全文
posted @ 2020-01-05 19:46 codestacklinuxer 阅读(535) 评论(0) 推荐(0) 编辑
摘要: 1. event事件模块的配置 events { use epoll; worker_connections 1024; } event事件模块,配置分为两层:ngx_events_module 事件模块 和 ngx_event_core_module 事件核心模块。 ngx_events_modu 阅读全文
posted @ 2020-01-02 19:36 codestacklinuxer 阅读(465) 评论(0) 推荐(0) 编辑
摘要: ngx_event.c :这个文件主要放置Nginx事件event模块的核心代码。 包含:进程事件分发器(ngx_process_events_and_timers)、事件模块的模块和配置、模块初始化/配置初始化等事件模块初始化的核心函数。 ngx_event_timer.c:定时器事件管理。主要放 阅读全文
posted @ 2020-01-02 19:33 codestacklinuxer 阅读(946) 评论(0) 推荐(0) 编辑
摘要: Nginx服务器使用 master/worker 多进程模式。 主进程(Master process)启动后,会接收和处理外部信号; 主进程启动后通过fork() 函数产生一个或多个子进程(work process), 每个子进程会进行进程初始化、 模块调用以及对事件的接收和处理等工作。 主进程主要 阅读全文
posted @ 2020-01-02 19:32 codestacklinuxer 阅读(645) 评论(0) 推荐(0) 编辑
上一页 1 ··· 50 51 52 53 54 55 56 57 58 ··· 64 下一页