Skip to content

Commit a5cc48d

Browse files
authored
Added support for new container command approach of NO-EVICT subcommand (#1346)
1 parent e600307 commit a5cc48d

File tree

6 files changed

+19
-0
lines changed

6 files changed

+19
-0
lines changed

.github/workflows/linters.yml

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ on:
77
branches:
88
- main
99
- v2.**
10+
- v3.**
1011
pull_request: null
1112

1213
permissions: {}

.github/workflows/stack.yml

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
branches:
66
- main
77
- v2.**
8+
- v3.**
89
pull_request:
910

1011
jobs:

.github/workflows/tests.yml

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ on:
55
branches:
66
- main
77
- v2.**
8+
- v3.**
89
pull_request:
910

1011
concurrency:

src/Command/Container/CLIENT.php

+1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
* @method string getName()
1919
* @method Status kill(...$arguments)
2020
* @method string list(string $type = null, int ...$clientId)
21+
* @method Status noEvict(bool $enable = null)
2122
* @method Status noTouch(bool $enable = null)
2223
* @method Status setInfo(string $modifier = null, string $value = null)
2324
* @method Status setName(string $connectionName)

src/Command/Redis/CLIENT.php

+4
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,10 @@ public function setArguments(array $arguments)
3636
case 'LIST':
3737
$this->setListArguments($arguments);
3838
break;
39+
case 'NOEVICT':
40+
$arguments[0] = 'NO-EVICT';
41+
$this->setNoTouchArguments($arguments);
42+
break;
3943
case 'NOTOUCH':
4044
$arguments[0] = 'NO-TOUCH';
4145
$this->setNoTouchArguments($arguments);

tests/Predis/Command/Redis/CLIENT_Test.php

+11
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,17 @@ public function testSetsNameOfConnection(): void
229229
$this->assertEquals($expectedConnectionName, $redis->client->getName());
230230
}
231231

232+
/**
233+
* @group connected
234+
* @requiresRedisVersion >= 7.0.0
235+
*/
236+
public function testNoEvictTurnEnableEvictionMode(): void
237+
{
238+
$redis = $this->getClient();
239+
240+
$this->assertEquals('OK', $redis->client->noEvict(true));
241+
}
242+
232243
/**
233244
* @group connected
234245
* @requiresRedisVersion >= 7.2.0

0 commit comments

Comments
 (0)