comparison xml/en/docs/http/ngx_http_scgi_module.xml @ 1379:91f5c089f4ca

Documented fastcgi_cache_lock_age and look-alikes.
author Ruslan Ermilov <ru@nginx.com>
date Fri, 19 Dec 2014 12:26:10 +0300
parents 25db29c8875e
children 94cac978bda3
comparison
equal deleted inserted replaced
1378:6bfd39dc48c5 1379:91f5c089f4ca
8 <!DOCTYPE module SYSTEM "../../../../dtd/module.dtd"> 8 <!DOCTYPE module SYSTEM "../../../../dtd/module.dtd">
9 9
10 <module name="Module ngx_http_scgi_module" 10 <module name="Module ngx_http_scgi_module"
11 link="/en/docs/http/ngx_http_scgi_module.html" 11 link="/en/docs/http/ngx_http_scgi_module.html"
12 lang="en" 12 lang="en"
13 rev="12"> 13 rev="13">
14 14
15 <section id="summary"> 15 <section id="summary">
16 16
17 <para> 17 <para>
18 The <literal>ngx_http_scgi_module</literal> module allows passing 18 The <literal>ngx_http_scgi_module</literal> module allows passing
231 </para> 231 </para>
232 232
233 </directive> 233 </directive>
234 234
235 235
236 <directive name="scgi_cache_lock_age">
237 <syntax><value>time</value></syntax>
238 <default>5s</default>
239 <context>http</context>
240 <context>server</context>
241 <context>location</context>
242 <appeared-in>1.7.8</appeared-in>
243
244 <para>
245 If the last request passed to the SCGI server
246 for populating a new cache element
247 has not completed for the specified <value>time</value>,
248 one more request may be passed to the SCGI server.
249 </para>
250
251 </directive>
252
253
236 <directive name="scgi_cache_lock_timeout"> 254 <directive name="scgi_cache_lock_timeout">
237 <syntax><value>time</value></syntax> 255 <syntax><value>time</value></syntax>
238 <default>5s</default> 256 <default>5s</default>
239 <context>http</context> 257 <context>http</context>
240 <context>server</context> 258 <context>server</context>
241 <context>location</context> 259 <context>location</context>
242 <appeared-in>1.1.12</appeared-in> 260 <appeared-in>1.1.12</appeared-in>
243 261
244 <para> 262 <para>
245 Sets a timeout for <link id="scgi_cache_lock"/>. 263 Sets a timeout for <link id="scgi_cache_lock"/>.
264 When the <value>time</value> expires,
265 the request will be passed to the SCGI server,
266 however, the response will not be cached.
267 <note>
268 Before 1.7.8, the response could be cached.
269 </note>
246 </para> 270 </para>
247 271
248 </directive> 272 </directive>
249 273
250 274