redis-cluster-client 0.3.12 → 0.3.14
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 909179c8cf02cee3894f4cb11c7d51e8de13d667345daceb3c0f13306b661613
|
4
|
+
data.tar.gz: 959e61ae91001a48177cc19e72e4e7af3f95224481080751cebf2c8d04f2665c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c5e4ce403a09a18bfa94d5e0bf70db3277d16bcb05a8d300b4555ecb4f3b743a50af10a19ffe5988f8f60e06813a5dd147895410fb02b1f15522907a6dfe4143
|
7
|
+
data.tar.gz: 56154b82f8ced444d757df7b6438d58d2d2d187917f61aa40e78b980811e7b597d090c1a982d72b6ca100fa6e606a7719faeec9eef0688d102058d4976178e41
|
@@ -47,9 +47,9 @@ class RedisClient
|
|
47
47
|
|
48
48
|
min = DUMMY_LATENCY_NSEC
|
49
49
|
MEASURE_ATTEMPT_COUNT.times do
|
50
|
-
starting = Process.clock_gettime(Process::CLOCK_MONOTONIC, :
|
51
|
-
client.
|
52
|
-
duration = Process.clock_gettime(Process::CLOCK_MONOTONIC, :
|
50
|
+
starting = Process.clock_gettime(Process::CLOCK_MONOTONIC, :microsecond)
|
51
|
+
client.call_once('PING')
|
52
|
+
duration = Process.clock_gettime(Process::CLOCK_MONOTONIC, :microsecond) - starting
|
53
53
|
min = duration if duration < min
|
54
54
|
end
|
55
55
|
|
@@ -81,6 +81,14 @@ class RedisClient
|
|
81
81
|
end
|
82
82
|
end
|
83
83
|
|
84
|
+
::RedisClient.class_eval do
|
85
|
+
attr_reader :middlewares
|
86
|
+
|
87
|
+
def ensure_connected_cluster_scoped(retryable: true, &block)
|
88
|
+
ensure_connected(retryable: retryable, &block)
|
89
|
+
end
|
90
|
+
end
|
91
|
+
|
84
92
|
ReplySizeError = Class.new(::RedisClient::Error)
|
85
93
|
|
86
94
|
class RedirectionNeeded < ::RedisClient::Error
|
@@ -198,9 +206,9 @@ class RedisClient
|
|
198
206
|
end
|
199
207
|
|
200
208
|
def send_pipeline(client, pipeline)
|
201
|
-
results = client.
|
209
|
+
results = client.ensure_connected_cluster_scoped(retryable: pipeline._retryable?) do |connection|
|
202
210
|
commands = pipeline._commands
|
203
|
-
|
211
|
+
client.middlewares.call_pipelined(commands, client.config) do
|
204
212
|
connection.call_pipelined_aware_of_redirection(commands, pipeline._timeouts)
|
205
213
|
end
|
206
214
|
end
|
metadata
CHANGED
@@ -1,29 +1,29 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: redis-cluster-client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.14
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Taishi Kasuga
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2022-10-
|
11
|
+
date: 2022-10-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: redis-client
|
15
15
|
requirement: !ruby/object:Gem::Requirement
|
16
16
|
requirements:
|
17
|
-
- - "
|
17
|
+
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.10'
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
|
-
- - "
|
24
|
+
- - ">="
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '0.
|
26
|
+
version: '0.10'
|
27
27
|
description:
|
28
28
|
email:
|
29
29
|
- proxy0721@gmail.com
|