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 @@ -786,19 +786,19 @@ non-blocking ones may be queued up until after the blocking ones finish.
786
786
Another reason to use duplicate() is when multiple DBs on the same server are
787
787
accessed via the redis SELECT command. Each DB could use its own connection.
788
788
789
- ## client.send_command (command_name[ , [ args] [ , callback ]] )
789
+ ## client.sendCommand (command_name[ , [ args] [ , callback ]] )
790
790
791
791
All Redis commands have been added to the ` client ` object. However, if new
792
792
commands are introduced before this library is updated or if you want to add
793
- individual commands you can use ` send_command ()` to send arbitrary commands to
793
+ individual commands you can use ` sendCommand ()` to send arbitrary commands to
794
794
Redis.
795
795
796
796
All commands are sent as multi-bulk commands. ` args ` can either be an Array of
797
797
arguments, or omitted / set to undefined.
798
798
799
- ## client.add_command (command_name)
799
+ ## client.addCommand (command_name)
800
800
801
- Calling add_command will add a new command to the prototype. The exact command
801
+ Calling addCommand will add a new command to the prototype. The exact command
802
802
name will be used when calling using this new command. Using arbitrary arguments
803
803
is possible as with any other command.
804
804
You can’t perform that action at this time.
0 commit comments