Skip to content

Commit e132c31

Browse files
committed
Add option for disabling reads to slaves in replication topologies
1 parent 02fadf8 commit e132c31

File tree

2 files changed

+42
-0
lines changed

2 files changed

+42
-0
lines changed

src/Replication/ReplicationStrategy.php

+19
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ class ReplicationStrategy
2323
protected $disallowed;
2424
protected $readonly;
2525
protected $readonlySHA1;
26+
protected $loadBalancing = true;
2627

2728
public function __construct()
2829
{
@@ -42,6 +43,10 @@ public function __construct()
4243
*/
4344
public function isReadOperation(CommandInterface $command)
4445
{
46+
if (!$this->loadBalancing) {
47+
return false;
48+
}
49+
4550
if (isset($this->disallowed[$id = $command->getId()])) {
4651
throw new NotSupportedException(
4752
"The command '$id' is not allowed in replication mode."
@@ -271,4 +276,18 @@ protected function getReadOnlyOperations()
271276
'GEORADIUSBYMEMBER' => [$this, 'isGeoradiusReadOnly'],
272277
];
273278
}
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+
274293
}

tests/Predis/Replication/ReplicationStrategyTest.php

+23
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,29 @@
1818

1919
class ReplicationStrategyTest extends PredisTestCase
2020
{
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+
2144
/**
2245
* @group disconnected
2346
*/

0 commit comments

Comments
 (0)