Module: Redis::Commands::Cluster

Included in:
Redis::Commands
Defined in:
lib/redis/commands/cluster.rb

Instance Method Summary collapse

Instance Method Details

#askingString

Sends ASKING command to random node and returns its reply.

See Also:

Returns:

  • 'OK'



23
24
25
# File 'lib/redis/commands/cluster.rb', line 23

def asking
  send_command(i[asking])
end

#cluster(subcommand, *args) ⇒ Object

Sends CLUSTER * command to random node and returns its reply.

See Also:

Parameters:

  • the subcommand of cluster command e.g. :slots, :nodes, :slaves, :info

Returns:

  • depends on the subcommand



14
15
16
# File 'lib/redis/commands/cluster.rb', line 14

def cluster(subcommand, *args)
  send_command([:cluster, subcommand] + args)
end