comparison xml/en/docs/dev/development_guide.xml @ 2515:621ffbc159b6

Corrected output for NGX_HTTP_SUBREQUEST_IN_MEMORY in devguide.
author Yaroslav Zhuravlev <yar@nginx.com>
date Wed, 18 Mar 2020 17:57:28 +0000
parents eca8e37a34ef
children c6c259d3601a
comparison
equal deleted inserted replaced
2514:da5355b68ddd 2515:621ffbc159b6
7 <!DOCTYPE article SYSTEM "../../../../dtd/article.dtd"> 7 <!DOCTYPE article SYSTEM "../../../../dtd/article.dtd">
8 8
9 <article name="Development guide" 9 <article name="Development guide"
10 link="/en/docs/dev/development_guide.html" 10 link="/en/docs/dev/development_guide.html"
11 lang="en" 11 lang="en"
12 rev="8"> 12 rev="9">
13 13
14 <section name="Introduction" id="introduction"> 14 <section name="Introduction" id="introduction">
15 15
16 16
17 <section name="Code layout" id="code_layout"> 17 <section name="Code layout" id="code_layout">
5280 <literal>NGX_HTTP_SUBREQUEST_IN_MEMORY</literal> - Output is not 5280 <literal>NGX_HTTP_SUBREQUEST_IN_MEMORY</literal> - Output is not
5281 sent to the client, but rather stored in memory. 5281 sent to the client, but rather stored in memory.
5282 The flag only affects subrequests which are processed by one of the proxying 5282 The flag only affects subrequests which are processed by one of the proxying
5283 modules. 5283 modules.
5284 After a subrequest is finalized its output is available in 5284 After a subrequest is finalized its output is available in
5285 a <literal>r->upstream->buffer</literal> of type <literal>ngx_buf_t</literal>. 5285 <literal>r->out</literal> of type <literal>ngx_buf_t</literal>.
5286 </listitem> 5286 </listitem>
5287 5287
5288 <listitem> 5288 <listitem>
5289 <literal>NGX_HTTP_SUBREQUEST_WAITED</literal> - The subrequest's 5289 <literal>NGX_HTTP_SUBREQUEST_WAITED</literal> - The subrequest's
5290 <literal>done</literal> flag is set even if the subrequest is not active when 5290 <literal>done</literal> flag is set even if the subrequest is not active when