Module: Redis::Commands::Cluster
- Included in:
- Redis::Commands
- Defined in:
- lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/redis-5.0.5/lib/redis/commands/cluster.rb
Instance Method Summary collapse
-
#asking ⇒ String
Sends ‘ASKING` command to random node and returns its reply.
-
#cluster(subcommand, *args) ⇒ Object
Sends ‘CLUSTER *` command to random node and returns its reply.
Instance Method Details
#asking ⇒ String
Sends ‘ASKING` command to random node and returns its reply.
23 24 25 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/redis-5.0.5/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.
14 15 16 |
# File 'lib/rubypitaya/app-template/vendor/bundle/ruby/3.1.0/gems/redis-5.0.5/lib/redis/commands/cluster.rb', line 14 def cluster(subcommand, *args) send_command([:cluster, subcommand] + args) end |