redis / redis

Redis is an in-memory database that persists on disk. The data model is key-value, but many different kind of values are supported: Strings, Lists, Sets, Sorted Sets, Hashes, Streams, HyperLogLogs, Bitmaps.
http://redis.io
Other
66.97k stars 23.8k forks source link

./create-cluster command: call <cmd> -- Call a command (up to 7 arguments) on all nodes. #9415

Open startjava opened 3 years ago

startjava commented 3 years ago

up to 7 arguments??? what mean ?? thank you !

zuiderkwast commented 3 years ago

Example:

$ ./create-cluster call SET mykey hello
                         ↑    ↑     ↑
                   command  arg   arg

SET is the command name. mykey and hello are two arguments.

Some commands accept more than 7 arguments, but with create-cluster call, maximum 7 can be used.