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
Used internally to send commands to Redis. Nearly all Redis commands have been added to the `client` object.
583
582
However, if new commands are introduced before this library is updated, you can use `send_command()` to send arbitrary commands to Redis.
@@ -713,6 +712,7 @@ To get debug output run your `node_redis` application with `NODE_DEBUG=redis`.
713
712
714
713
## How to Contribute
715
714
- Open a pull request or an issue about what you want to implement / change. We're glad for any help!
715
+
- Please be aware that we'll only accept fully tested code.
716
716
717
717
## Contributors
718
718
Many [people](https://github.com/NodeRedis/node_redis/graphs/contributors) have have added features and fixed bugs in `node_redis`. Thanks to all of them!
Copy file name to clipboardExpand all lines: changelog.md
+15-4
Original file line number
Diff line number
Diff line change
@@ -1,17 +1,28 @@
1
1
Changelog
2
2
=========
3
3
4
+
## v.2.2.4 - 17 Oct, 2015
5
+
6
+
Bugfixes
7
+
8
+
- Fixed unspecific error message for unresolvable commands ([@BridgeAR](https://github.com/BridgeAR))
9
+
- Fixed not allowed command error in pubsub mode not being returned in a provided callback ([@BridgeAR](https://github.com/BridgeAR))
10
+
- Fixed to many commands forbidden in pub sub mode ([@BridgeAR](https://github.com/BridgeAR))
11
+
- Fixed mutation of the arguments array passed to .multi / .batch constructor ([@BridgeAR](https://github.com/BridgeAR))
12
+
- Fixed mutation of the options object passed to createClient ([@BridgeAR](https://github.com/BridgeAR))
13
+
- Fixed error callback in .multi not called if connection in broken mode ([@BridgeAR](https://github.com/BridgeAR))
14
+
4
15
## v.2.2.3 - 14 Oct, 2015
5
16
6
17
Bugfixes
7
18
8
-
-Fix multi not being executed on Node 0.10.x if node_redis not yet ready ([@BridgeAR](https://github.com/BridgeAR))
19
+
-Fixed multi not being executed on Node 0.10.x if node_redis not yet ready ([@BridgeAR](https://github.com/BridgeAR))
9
20
10
21
## v.2.2.2 - 14 Oct, 2015
11
22
12
23
Bugfixes
13
24
14
-
-Fix regular commands not being executed after a .multi until .exec was called ([@BridgeAR](https://github.com/BridgeAR))
25
+
-Fixed regular commands not being executed after a .multi until .exec was called ([@BridgeAR](https://github.com/BridgeAR))
15
26
16
27
## v.2.2.1 - 12 Oct, 2015
17
28
@@ -34,7 +45,7 @@ Features
34
45
35
46
Bugfixes
36
47
37
-
-Fix a javascript parser regression introduced in 2.0 that could result in timeouts on high load. ([@BridgeAR](https://github.com/BridgeAR))
48
+
-Fixed a javascript parser regression introduced in 2.0 that could result in timeouts on high load. ([@BridgeAR](https://github.com/BridgeAR))
38
49
- I was not able to write a regression test for this, since the error seems to only occur under heavy load with special conditions. So please have a look for timeouts with the js parser, if you use it and report all issues and switch to the hiredis parser in the meanwhile. If you're able to come up with a reproducable test case, this would be even better :)
39
50
- Fixed should_buffer boolean for .exec, .select and .auth commands not being returned and fix a couple special conditions ([@BridgeAR](https://github.com/BridgeAR))
40
51
@@ -141,7 +152,7 @@ This is the biggest release that node_redis had since it was released in 2010. A
141
152
- Do not wrap errors into other errors (@BridgeAR)
142
153
- Authentication failures are now returned in the callback instead of being emitted (@BridgeAR)
143
154
- Fix a memory leak on reconnect (@rahar)
144
-
- Using `send_command` directly may no also be called without the args as stated in the [README.md](./README.md) (@BridgeAR)
155
+
- Using `send_command` directly may now also be called without the args as stated in the [README.md](./README.md) (@BridgeAR)
145
156
- Fix the multi.exec error handling (@BridgeAR)
146
157
- Fix commands being inconsistent and behaving wrong (@BridgeAR)
147
158
- Channel names with spaces are now properly resubscribed after a reconnection (@pbihler)
0 commit comments