module Redis::Commands::Cluster
def asking
-
(String)
- `'OK'`
Other tags:
- See: https://redis.io/topics/cluster-spec#ask-redirection - ASK redirection
def asking send_command(%i[asking]) end
def cluster(subcommand, *args)
-
(Object)
- depends on the subcommand
Parameters:
-
subcommand
(String, Symbol
) -- the subcommand of cluster command
Other tags:
- See: https://redis.io/commands#cluster - Reference of cluster command
def cluster(subcommand, *args) send_command([:cluster, subcommand] + args) end