-
Notifications
You must be signed in to change notification settings - Fork 6
/
CHANGES
120 lines (69 loc) · 3.7 KB
/
CHANGES
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
Changes with ngx_http_redis 0.3.9 13 May 2018
*) Feature: redis "AUTH" command support.
Original idea from https://github.com/Yongke/ngx_http_redis-0.3.7
Thanks to Wang Yongke.
Changes with ngx_http_redis 0.3.8 21 Feb 2016
*) Bugfix: it is impossible to compile the ngx_http_redis_module
without http_gzip module or with --without-http_gzip_module
option.
Thanks to Yichun Zhang (agentzh).
*) Feature: it's possible to compile as dynamic module now, this
feature has been introduced in nginx 1.9.11.
Changes with ngx_http_redis 0.3.7 28 Nov 2013
*) Bugfix: ngx_http_redis_module might issue the error message
"redis sent invalid trailer" for nginx >= 1.5.3.
Thanks to Maxim Dounin.
Changes with ngx_http_redis 0.3.6 03 Apr 2012
*) Feature: redis_gzip_flag. Useful if you are prefer to
store data compressed in redis. Works with ngx_http_gunzip_filter
module.
Thanks to Maxim Dounin.
*) Bugfix: ngx_http_redis_module might issue the error message
"redis sent invalid trailer".
Thanks to agentzh.
Changes with ngx_http_redis 0.3.5 30 Aug 2011
*) Feature: add test for not set $redis_db directive.
*) Feature: keep-alive support merged from original
memcached module 1.1.4.
Changes with ngx_http_redis 0.3.4 24 Aug 2011
*) Change: better error messages diagnostics in select phase.
*) Add more comments in source code.
*) Bugfix: fix interaction with redis if redis_db was unused.
Found by Sergey Makarov.
Thanks to Igor Sysoev.
*) Feature: add test suite for redis backend.
Thanks to Maxim Dounin.
Changes with ngx_http_redis 0.3.3 07 Jun 2011
*) Bugfix: fix interaction with redis if redis_db was used.
Also, compile with -Werror now is possible.
Changes with ngx_http_redis 0.3.2 17 Aug 2010
*) Bugfix: ngx_http_redis_module might issue the error message
"redis sent invalid trailer". For more information see:
$ diff -ruN \
nginx-0.8.34/src/http/modules/ngx_http_memcached_module.c \
nginx-0.8.35/src/http/modules/ngx_http_memcached_module.c
*) Change: now the $redis_db set is not obligatory; default
value is "0".
Changes with ngx_http_redis 0.3.1 26 Dec 2009
*) Change: return 502 instead of 404 for error.
*) Change: better error messages diagnostics.
*) Bugfix: improve interoperability with redis; the bug had
appeared in 0.3.0.
Changes with ngx_http_redis 0.3.0 23 Dec 2009
*) Compatibility with latest stable (0.7.64) and
development 0.8.31 releases.
*) Bugfix: multiple commands issue with interoperability with
redis; the bug had appeared in 0.2.0.
*) Feature: redis_bind directive merge from original
memcached module (for 0.8.22 and later).
Changes with ngx_http_redis 0.2.0 19 Sep 2009
*) Feature: the $redis_db variable: now the ngx_http_redis
module uses the $redis_db variable value as the parameter
for SELECT command.
*) Cleanup: style/spaces fixes.
Changes with ngx_http_redis 0.1.2 14 Sep 2009
*) Change: backport to 0.7.61.
Changes with ngx_http_redis 0.1.1 31 Aug 2009
*) Change: compatibility with nginx 0.8.11.
*) Cleanup: mlcf -> rlcf, i.e.
(memcached location configuration) -> redis...