comparison xml/en/docs/http/ngx_http_fastcgi_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_fastcgi_module" 10 <module name="Module ngx_http_fastcgi_module"
11 link="/en/docs/http/ngx_http_fastcgi_module.html" 11 link="/en/docs/http/ngx_http_fastcgi_module.html"
12 lang="en" 12 lang="en"
13 rev="24"> 13 rev="25">
14 14
15 <section id="summary"> 15 <section id="summary">
16 16
17 <para> 17 <para>
18 The <literal>ngx_http_fastcgi_module</literal> module allows passing 18 The <literal>ngx_http_fastcgi_module</literal> module allows passing
239 </para> 239 </para>
240 240
241 </directive> 241 </directive>
242 242
243 243
244 <directive name="fastcgi_cache_lock_age">
245 <syntax><value>time</value></syntax>
246 <default>5s</default>
247 <context>http</context>
248 <context>server</context>
249 <context>location</context>
250 <appeared-in>1.7.8</appeared-in>
251
252 <para>
253 If the last request passed to the FastCGI server
254 for populating a new cache element
255 has not completed for the specified <value>time</value>,
256 one more request may be passed to the FastCGI server.
257 </para>
258
259 </directive>
260
261
244 <directive name="fastcgi_cache_lock_timeout"> 262 <directive name="fastcgi_cache_lock_timeout">
245 <syntax><value>time</value></syntax> 263 <syntax><value>time</value></syntax>
246 <default>5s</default> 264 <default>5s</default>
247 <context>http</context> 265 <context>http</context>
248 <context>server</context> 266 <context>server</context>
249 <context>location</context> 267 <context>location</context>
250 <appeared-in>1.1.12</appeared-in> 268 <appeared-in>1.1.12</appeared-in>
251 269
252 <para> 270 <para>
253 Sets a timeout for <link id="fastcgi_cache_lock"/>. 271 Sets a timeout for <link id="fastcgi_cache_lock"/>.
272 When the <value>time</value> expires,
273 the request will be passed to the FastCGI server,
274 however, the response will not be cached.
275 <note>
276 Before 1.7.8, the response could be cached.
277 </note>
254 </para> 278 </para>
255 279
256 </directive> 280 </directive>
257 281
258 282