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.
786786Another reason to use duplicate() is when multiple DBs on the same server are
787787accessed via the redis SELECT command. Each DB could use its own connection.
788788
789- ## client.send_command (command_name[ , [ args] [ , callback ]] )
789+ ## client.sendCommand (command_name[ , [ args] [ , callback ]] )
790790
791791All Redis commands have been added to the ` client ` object. However, if new
792792commands 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
794794Redis.
795795
796796All commands are sent as multi-bulk commands. ` args ` can either be an Array of
797797arguments, or omitted / set to undefined.
798798
799- ## client.add_command (command_name)
799+ ## client.addCommand (command_name)
800800
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
802802name will be used when calling using this new command. Using arbitrary arguments
803803is possible as with any other command.
804804
You can’t perform that action at this time.
0 commit comments