File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -847,19 +847,19 @@ non-blocking ones may be queued up until after the blocking ones finish.
847
847
Another reason to use duplicate() is when multiple DBs on the same server are
848
848
accessed via the redis SELECT command. Each DB could use its own connection.
849
849
850
- ### ` client.send_command (command_name[, [args][, callback]]) `
850
+ ### ` client.sendCommand (command_name[, [args][, callback]]) `
851
851
852
852
All Redis commands have been added to the ` client ` object. However, if new
853
853
commands are introduced before this library is updated or if you want to add
854
- individual commands you can use ` send_command ()` to send arbitrary commands to
854
+ individual commands you can use ` sendCommand ()` to send arbitrary commands to
855
855
Redis.
856
856
857
857
All commands are sent as multi-bulk commands. ` args ` can either be an Array of
858
858
arguments, or omitted / set to undefined.
859
859
860
- ### ` redis.add_command (command_name) `
860
+ ### ` redis.addCommand (command_name) `
861
861
862
- Calling add_command will add a new command to the prototype. The exact command
862
+ Calling addCommand will add a new command to the prototype. The exact command
863
863
name will be used when calling using this new command. Using arbitrary arguments
864
864
is possible as with any other command.
865
865
You can’t perform that action at this time.
0 commit comments