Skip to content

Commit

Permalink
Merge pull request taobao#168 from 1for/patch-1
Browse files Browse the repository at this point in the history
Update chapter_04.rst. Thanks to 1for.
  • Loading branch information
jinglong committed Nov 26, 2013
2 parents acfd90e + 5e6f63b commit 2de7c53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/chapter_04.rst
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ ngx_http_output_filter可以被一般的静态处理模块调用,也有可能

发出子请求 (90%)
^^^^^^^^^^^^^^^^^^^^^
Nginx过滤模块一大特色就是可以发出子请求,也就是在过滤响应内容的时候,你可以发送新的请求,Nginx会根据你调用的先后顺序,将多个回复的内容拼接成正常的响应主体。一个简单的例子可以参考addtion模块
Nginx过滤模块一大特色就是可以发出子请求,也就是在过滤响应内容的时候,你可以发送新的请求,Nginx会根据你调用的先后顺序,将多个回复的内容拼接成正常的响应主体。一个简单的例子可以参考addition模块

Nginx是如何保证父请求和子请求的顺序呢?当Nginx发出子请求时,就会调用ngx_http_subrequest函数,将子请求插入父请求的r->postponed链表中。子请求会在主请求执行完毕时获得依次调用。子请求同样会有一个请求所有的生存期和处理过程,也会进入过滤模块流程。

Expand Down

0 comments on commit 2de7c53

Please sign in to comment.