Class: Redis::Cluster
- Inherits:
-
Object
show all
- Defined in:
- lib/redis/cluster.rb,
lib/redis/errors.rb,
lib/redis/cluster/node.rb,
lib/redis/cluster/slot.rb,
lib/redis/cluster/option.rb,
lib/redis/cluster/command.rb,
lib/redis/cluster/node_key.rb,
lib/redis/cluster/node_loader.rb,
lib/redis/cluster/slot_loader.rb,
lib/redis/cluster/command_loader.rb,
lib/redis/cluster/key_slot_converter.rb
Overview
Defined Under Namespace
Modules: CommandLoader, KeySlotConverter, NodeKey, NodeLoader, SlotLoader
Classes: AmbiguousNodeError, Command, CommandErrorCollection, CrossSlotPipeliningError, Node, Option, OrchestrationCommandNotSupported, Slot
Instance Method Summary
collapse
Constructor Details
#initialize(options = {}) ⇒ Cluster
Returns a new instance of Cluster.
24
25
26
27
28
|
# File 'lib/redis/cluster.rb', line 24
def initialize(options = {})
@option = Option.new(options)
@node, @slot = fetch_cluster_info!(@option)
@command = fetch_command_details(@node)
end
|
Instance Method Details
#call(command, &block) ⇒ Object
71
72
73
|
# File 'lib/redis/cluster.rb', line 71
def call(command, &block)
send_command(command, &block)
end
|
#call_loop(command, timeout = 0, &block) ⇒ Object
75
76
77
78
|
# File 'lib/redis/cluster.rb', line 75
def call_loop(command, timeout = 0, &block)
node = assign_node(command)
try_send(node, :call_loop, command, timeout, &block)
end
|
#call_pipeline(pipeline) ⇒ Object
80
81
82
83
84
85
|
# File 'lib/redis/cluster.rb', line 80
def call_pipeline(pipeline)
node_keys, command_keys = (pipeline)
raise CrossSlotPipeliningError, command_keys if node_keys.size > 1
node = find_node(node_keys.first)
try_send(node, :call_pipeline, pipeline)
end
|
#call_with_timeout(command, timeout, &block) ⇒ Object
87
88
89
90
|
# File 'lib/redis/cluster.rb', line 87
def call_with_timeout(command, timeout, &block)
node = assign_node(command)
try_send(node, :call_with_timeout, command, timeout, &block)
end
|
#call_without_timeout(command, &block) ⇒ Object
92
93
94
|
# File 'lib/redis/cluster.rb', line 92
def call_without_timeout(command, &block)
call_with_timeout(command, 0, &block)
end
|
#connected? ⇒ Boolean
46
47
48
|
# File 'lib/redis/cluster.rb', line 46
def connected?
@node.any?(&:connected?)
end
|
#connection_info ⇒ Object
55
56
57
58
59
60
61
62
63
64
65
|
# File 'lib/redis/cluster.rb', line 55
def connection_info
@node.sort_by(&:id).map do |client|
{
host: client.host,
port: client.port,
db: client.db,
id: client.id,
location: client.location
}
end
end
|
#db ⇒ Object
db feature is disabled in cluster mode
35
36
37
|
# File 'lib/redis/cluster.rb', line 35
def db
0
end
|
#db=(_db) ⇒ Object
db feature is disabled in cluster mode
40
|
# File 'lib/redis/cluster.rb', line 40
def db=(_db); end
|
#disconnect ⇒ Object
50
51
52
53
|
# File 'lib/redis/cluster.rb', line 50
def disconnect
@node.each(&:disconnect)
true
end
|
#id ⇒ Object
30
31
32
|
# File 'lib/redis/cluster.rb', line 30
def id
@node.map(&:id).sort.join(' ')
end
|
#process(commands, &block) ⇒ Object
96
97
98
99
100
101
102
103
104
105
106
107
|
# File 'lib/redis/cluster.rb', line 96
def process(commands, &block)
if commands.size == 1 &&
%w[unsubscribe punsubscribe].include?(commands.first.first.to_s.downcase) &&
commands.first.size == 1
@node.process_all(commands, &block)
else
node = assign_node(commands.first)
try_send(node, :process, commands, &block)
end
end
|
#timeout ⇒ Object
42
43
44
|
# File 'lib/redis/cluster.rb', line 42
def timeout
@node.first.timeout
end
|
#with_reconnect(val = true, &block) ⇒ Object
67
68
69
|
# File 'lib/redis/cluster.rb', line 67
def with_reconnect(val = true, &block)
try_send(@node.sample, :with_reconnect, val, &block)
end
|