File tree 6 files changed +19
-0
lines changed
tests/Predis/Command/Redis
6 files changed +19
-0
lines changed Original file line number Diff line number Diff line change 7
7
branches :
8
8
- main
9
9
- v2.**
10
+ - v3.**
10
11
pull_request : null
11
12
12
13
permissions : {}
Original file line number Diff line number Diff line change 5
5
branches :
6
6
- main
7
7
- v2.**
8
+ - v3.**
8
9
pull_request :
9
10
10
11
jobs :
Original file line number Diff line number Diff line change 5
5
branches :
6
6
- main
7
7
- v2.**
8
+ - v3.**
8
9
pull_request :
9
10
10
11
concurrency :
Original file line number Diff line number Diff line change 18
18
* @method string getName()
19
19
* @method Status kill(...$arguments)
20
20
* @method string list(string $type = null, int ...$clientId)
21
+ * @method Status noEvict(bool $enable = null)
21
22
* @method Status noTouch(bool $enable = null)
22
23
* @method Status setInfo(string $modifier = null, string $value = null)
23
24
* @method Status setName(string $connectionName)
Original file line number Diff line number Diff line change @@ -36,6 +36,10 @@ public function setArguments(array $arguments)
36
36
case 'LIST ' :
37
37
$ this ->setListArguments ($ arguments );
38
38
break ;
39
+ case 'NOEVICT ' :
40
+ $ arguments [0 ] = 'NO-EVICT ' ;
41
+ $ this ->setNoTouchArguments ($ arguments );
42
+ break ;
39
43
case 'NOTOUCH ' :
40
44
$ arguments [0 ] = 'NO-TOUCH ' ;
41
45
$ this ->setNoTouchArguments ($ arguments );
Original file line number Diff line number Diff line change @@ -229,6 +229,17 @@ public function testSetsNameOfConnection(): void
229
229
$ this ->assertEquals ($ expectedConnectionName , $ redis ->client ->getName ());
230
230
}
231
231
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
+
232
243
/**
233
244
* @group connected
234
245
* @requiresRedisVersion >= 7.2.0
You can’t perform that action at this time.
0 commit comments