You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -203,6 +203,7 @@ That way the default is to try reconnecting until 24h passed.
203
203
limits total amount of connection tries. Setting this to 1 will prevent any reconnect tries.
204
204
*`auth_pass`*null*; If set, client will run redis auth command on connect.
205
205
*`family`*IPv4*; You can force using IPv6 if you set the family to 'IPv6'. See Node.js [net](https://nodejs.org/api/net.html) or [dns](https://nodejs.org/api/dns.html) modules how to use the family type.
206
+
*`disable_resubscribing`: *false*; If set to `true`, a client won't resubscribe after disconnecting
Copy file name to clipboardExpand all lines: changelog.md
+12-2Lines changed: 12 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,16 @@
1
1
Changelog
2
2
=========
3
3
4
+
## v.2.x.x - xx, 2015
5
+
6
+
Features
7
+
8
+
- Added disable_resubscribing option to prevent a client from resubscribing after reconnecting (@BridgeAR)
9
+
10
+
Bugfixes
11
+
12
+
-
13
+
4
14
## v2.1.0 - Oct 02, 2015
5
15
6
16
Features:
@@ -14,7 +24,7 @@ Bugfixes:
14
24
- Fix argument mutation while using the array notation with the multi constructor (@BridgeAR)
15
25
- Fix multi.hmset key not being type converted if used with an object and key not being a string (@BridgeAR)
16
26
- Fix parser errors not being catched properly (@BridgeAR)
17
-
- Fix a crash that could occur if a redis server does return the info command as usual #541 (@BridgeAR)
27
+
- Fix a crash that could occur if a redis server does not return the info command as usual #541 (@BridgeAR)
18
28
- Explicitly passing undefined as a callback statement will work again. E.g. client.publish('channel', 'message', undefined); (@BridgeAR)
19
29
20
30
## v2.0.1 - Sep 24, 2015
@@ -27,7 +37,7 @@ Bugfixes:
27
37
28
38
This is the biggest release that node_redis had since it was released in 2010. A long list of outstanding bugs has been fixed, so we are very happy to present you redis 2.0 and we highly recommend updating as soon as possible.
29
39
30
-
#What's new in 2.0
40
+
#What's new in 2.0
31
41
32
42
- Implemented a "connection is broken" mode if no connection could be established
33
43
- node_redis no longer throws under any circumstances, preventing it from terminating applications.
0 commit comments