File tree 2 files changed +42
-0
lines changed
2 files changed +42
-0
lines changed Original file line number Diff line number Diff line change @@ -23,6 +23,7 @@ class ReplicationStrategy
23
23
protected $ disallowed ;
24
24
protected $ readonly ;
25
25
protected $ readonlySHA1 ;
26
+ protected $ loadBalancing = true ;
26
27
27
28
public function __construct ()
28
29
{
@@ -42,6 +43,10 @@ public function __construct()
42
43
*/
43
44
public function isReadOperation (CommandInterface $ command )
44
45
{
46
+ if (!$ this ->loadBalancing ) {
47
+ return false ;
48
+ }
49
+
45
50
if (isset ($ this ->disallowed [$ id = $ command ->getId ()])) {
46
51
throw new NotSupportedException (
47
52
"The command ' $ id' is not allowed in replication mode. "
@@ -271,4 +276,18 @@ protected function getReadOnlyOperations()
271
276
'GEORADIUSBYMEMBER ' => [$ this , 'isGeoradiusReadOnly ' ],
272
277
];
273
278
}
279
+
280
+ /**
281
+ * Disables reads to slaves when using
282
+ * a replication topology.
283
+ *
284
+ * @return self
285
+ */
286
+ public function disableLoadBalancing (): self
287
+ {
288
+ $ this ->loadBalancing = false ;
289
+
290
+ return $ this ;
291
+ }
292
+
274
293
}
Original file line number Diff line number Diff line change 18
18
19
19
class ReplicationStrategyTest extends PredisTestCase
20
20
{
21
+ /**
22
+ * @group disconnected
23
+ */
24
+ public function testLoadBalancing (): void
25
+ {
26
+ $ commands = $ this ->getCommandFactory ();
27
+ $ strategy = new ReplicationStrategy ();
28
+
29
+ $ command = $ commands ->create ('GET ' , ['key ' ]);
30
+
31
+ $ this ->assertTrue (
32
+ $ strategy ->isReadOperation ($ command ),
33
+ 'GET is expected to be a read operation. '
34
+ );
35
+
36
+ $ strategy ->disableLoadBalancing ();
37
+
38
+ $ this ->assertFalse (
39
+ $ strategy ->isReadOperation ($ command ),
40
+ 'GET is expected to be a write operation. '
41
+ );
42
+ }
43
+
21
44
/**
22
45
* @group disconnected
23
46
*/
You can’t perform that action at this time.
0 commit comments