We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
@options
Async::Redis::Client
Async::Redis::ClusterClient
1 parent 0e73e61 commit 6487485Copy full SHA for 6487485
lib/async/redis/cluster_client.rb
@@ -56,6 +56,7 @@ def clear
56
# @property endpoints [Array(Endpoint)] The list of cluster endpoints.
57
def initialize(endpoints, **options)
58
@endpoints = endpoints
59
+ @options = options
60
@shards = nil
61
end
62
@@ -93,15 +94,15 @@ def client_for(slot, role = :master)
93
94
95
96
if node = nodes.sample
- return (node.client ||= Client.new(node.endpoint))
97
+ return (node.client ||= Client.new(node.endpoint, **@options))
98
99
100
101
protected
102
103
def reload_cluster!(endpoints = @endpoints)
104
@endpoints.each do |endpoint|
- client = Client.new(endpoint)
105
+ client = Client.new(endpoint, **@options)
106
107
shards = RangeMap.new
108
endpoints = []
0 commit comments