Skip to content

Commit b1fbbd0

Browse files
committed
checked in the Changes file.
1 parent 06b7ab4 commit b1fbbd0

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

Changes

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
v0.12 - 11 July 2011
2+
* now we properly support fetch/store subrequests with internal redirection in them. main requests with internal redirection will still not be stored into the cache if there is a cache miss. thanks Liseen Wan for reporting it.
3+
* fixed spots that trigger the unused-but-set-variable warning by gcc 4.6.
4+
* added srcache_store_skip and srcache_fetch_skip directives to skip cache fetching or storing based on variables that are set and not empty nor 0. thanks Andre. Examples of using Lua to set $nocache to avoid storing URIs that contain /tmp:
5+
set_by_lua $nocache '
6+
if string.match(ngx.var.request_uri, "/tmp") then
7+
return "true"
8+
else
9+
return ""
10+
end';
11+
12+
srcache_store_skip $nocache;
13+
* added new directive srcache_store_max_size. thanks Andre.
14+
* made our filter optimization work with nginx HUP by clearing the ngx_http_srcache_used flag at nginx pre-config callback. thanks Marcus Clyne.
15+
* now we skip NULL chains in our output filters and also removed the SUBREQUEST_IN_MEMORY flag for our srcache_store subrequests because it will cause mysterious hanging issues when memcached returns CLIENT_ERROR for "get".
16+

0 commit comments

Comments
 (0)