comparison src/http/ngx_http_script.h @ 588: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 4d3e880ce86c
children 6c96fdd2dfc3
comparison
equal deleted inserted replaced
587:913af46ee783 588:b6a5942a4e6a
205 void ngx_http_script_flush_complex_value(ngx_http_request_t *r, 205 void ngx_http_script_flush_complex_value(ngx_http_request_t *r,
206 ngx_http_complex_value_t *val); 206 ngx_http_complex_value_t *val);
207 ngx_int_t ngx_http_complex_value(ngx_http_request_t *r, 207 ngx_int_t ngx_http_complex_value(ngx_http_request_t *r,
208 ngx_http_complex_value_t *val, ngx_str_t *value); 208 ngx_http_complex_value_t *val, ngx_str_t *value);
209 ngx_int_t ngx_http_compile_complex_value(ngx_http_compile_complex_value_t *ccv); 209 ngx_int_t ngx_http_compile_complex_value(ngx_http_compile_complex_value_t *ccv);
210
211 ngx_int_t ngx_http_test_predicates(ngx_http_request_t *r,
212 ngx_array_t *predicates);
213 char *ngx_http_set_predicate_slot(ngx_conf_t *cf, ngx_command_t *cmd,
214 void *conf);
210 215
211 ngx_uint_t ngx_http_script_variables_count(ngx_str_t *value); 216 ngx_uint_t ngx_http_script_variables_count(ngx_str_t *value);
212 ngx_int_t ngx_http_script_compile(ngx_http_script_compile_t *sc); 217 ngx_int_t ngx_http_script_compile(ngx_http_script_compile_t *sc);
213 u_char *ngx_http_script_run(ngx_http_request_t *r, ngx_str_t *value, 218 u_char *ngx_http_script_run(ngx_http_request_t *r, ngx_str_t *value,
214 void *code_lengths, size_t reserved, void *code_values); 219 void *code_lengths, size_t reserved, void *code_values);