comparison src/http/ngx_http_upstream.h @ 631:b6a5942a4e6a NGINX_0_8_46

nginx 0.8.46 *) Change: now the "proxy_no_cache", "fastcgi_no_cache", "uwsgi_no_cache", and "scgi_no_cache" directives affect on a cached response saving only. *) Feature: the "proxy_cache_bypass", "fastcgi_cache_bypass", "uwsgi_cache_bypass", and "scgi_cache_bypass" directives. *) Bugfix: nginx did not free memory in cache keys zones if there was an error during working with backend: the memory was freed only after inactivity time or on memory low condition.
author Igor Sysoev <http://sysoev.ru>
date Mon, 19 Jul 2010 00:00:00 +0400
parents 016632f0fb18
children 428c6e58046a
comparison
equal deleted inserted replaced
630:913af46ee783 631:b6a5942a4e6a
161 ngx_uint_t cache_min_uses; 161 ngx_uint_t cache_min_uses;
162 ngx_uint_t cache_use_stale; 162 ngx_uint_t cache_use_stale;
163 ngx_uint_t cache_methods; 163 ngx_uint_t cache_methods;
164 164
165 ngx_array_t *cache_valid; 165 ngx_array_t *cache_valid;
166 ngx_array_t *no_cache; /* ngx_http_complex_value_t */ 166 ngx_array_t *cache_bypass;
167 ngx_array_t *no_cache;
167 #endif 168 #endif
168 169
169 ngx_array_t *store_lengths; 170 ngx_array_t *store_lengths;
170 ngx_array_t *store_values; 171 ngx_array_t *store_values;
171 172