=encoding utf-8 =head1 NAME ngx_http_memcached_module - Module ngx_http_memcached_module =head1 The C module is used to obtain responses from a memcached server. The key is set in the C<$memcached_key> variable. A response should be put in memcached in advance by means external to nginx. =head1 Example Configuration server { location / { set $memcached_key "$uri?$args"; memcached_pass host:11211; error_page 404 502 504 = @fallback; } location @fallback { proxy_pass http://backend; } } =head1 Directives =head2 memcached_bind B memcached_bind I> [transparent] E C> B I B I B I This directive appeared in version 0.8.22. Makes outgoing connections to a memcached server originate from the specified local IP address with an optional port (1.11.2). Parameter value can contain variables (1.3.12). The special value C (1.3.12) cancels the effect of the C directive inherited from the previous configuration level, which allows the system to auto-assign the local IP address and port. The C parameter (1.11.0) allows outgoing connections to a memcached server originate from a non-local IP address, for example, from a real IP address of a client: memcached_bind $remote_addr transparent; In order for this parameter to work, it is necessary to run nginx worker processes with the L privileges and configure kernel routing table to intercept network traffic from the memcached server. =head2 memcached_buffer_size B memcached_buffer_size I>> B I<4kE8k> B I B I B I Sets the I> of the buffer used for reading the response received from the memcached server. The response is passed to the client synchronously, as soon as it is received. =head2 memcached_connect_timeout B memcached_connect_timeout I>> B I<60s> B I B I B I Defines a timeout for establishing a connection with a memcached server. It should be noted that this timeout cannot usually exceed 75 seconds. =head2 memcached_force_ranges B memcached_force_ranges I E C> B I B I B I B I This directive appeared in version 1.7.7. Enables byte-range support for both cached and uncached responses from the memcached server regardless of the C field in these responses. =head2 memcached_gzip_flag B memcached_gzip_flag I>> B I<> B I B I B I This directive appeared in version 1.3.6. Enables the test for the I> presence in the memcached server response and sets the “C” response header field to “C” if the flag is set. =head2 memcached_next_upstream B memcached_next_upstream I< C E C E C E C E C ...> B I B I B I B I Specifies in which cases a request should be passed to the next server: =over =item C an error occurred while establishing a connection with the server, passing a request to it, or reading the response header; =item C a timeout has occurred while establishing a connection with the server, passing a request to it, or reading the response header; =item C a server returned an empty or invalid response; =item C a response was not found on the server; =item C disables passing a request to the next server. =back One should bear in mind that passing a request to the next server is only possible if nothing has been sent to a client yet. That is, if an error or timeout occurs in the middle of the transferring of a response, fixing this is impossible. The directive also defines what is considered an L of communication with a server. The cases of C, C and C are always considered unsuccessful attempts, even if they are not specified in the directive. The case of C is never considered an unsuccessful attempt. Passing a request to the next server can be limited by the number of tries and by time. =head2 memcached_next_upstream_timeout B memcached_next_upstream_timeout I>> B I<0> B I B I B I This directive appeared in version 1.7.5. Limits the time during which a request can be passed to the next server. The C<0> value turns off this limitation. =head2 memcached_next_upstream_tries B memcached_next_upstream_tries I>> B I<0> B I B I B I This directive appeared in version 1.7.5. Limits the number of possible tries for passing a request to the next server. The C<0> value turns off this limitation. =head2 memcached_pass B memcached_pass I>> B I B I Sets the memcached server address. The address can be specified as a domain name or IP address, and a port: memcached_pass localhost:11211; or as a UNIX-domain socket path: memcached_pass unix:/tmp/memcached.socket; If a domain name resolves to several addresses, all of them will be used in a round-robin fashion. In addition, an address can be specified as a L. =head2 memcached_read_timeout B memcached_read_timeout I>> B I<60s> B I B I B I Defines a timeout for reading a response from the memcached server. The timeout is set only between two successive read operations, not for the transmission of the whole response. If the memcached server does not transmit anything within this time, the connection is closed. =head2 memcached_send_timeout B memcached_send_timeout I>> B I<60s> B I B I B I Sets a timeout for transmitting a request to the memcached server. The timeout is set only between two successive write operations, not for the transmission of the whole request. If the memcached server does not receive anything within this time, the connection is closed. =head1 Embedded Variables =over =item C<$memcached_key> Defines a key for obtaining response from a memcached server. =back