You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -3479,12 +3489,13 @@ public function xRead($arr_streams, $i_count = null, $i_block = null) {}
3479
3489
3480
3490
/**
3481
3491
* This method is similar to xRead except that it supports reading messages for a specific consumer group.
3482
-
* @param string $str_group
3483
-
* @param string $str_consumer
3484
-
* @param array $arr_streams
3485
-
* @param int|string $i_count
3486
-
* @param int|string $i_block
3487
-
* @return array The messages delivered to this consumer group (if any).
3492
+
* @param string $str_group
3493
+
* @param string $str_consumer
3494
+
* @param array $arr_streams
3495
+
* @param int|string $i_count
3496
+
* @param int|string $i_block
3497
+
* @return array The messages delivered to this consumer group (if any).
3498
+
* @link https://redis.io/commands/xreadgroup
3488
3499
* @example
3489
3500
* <pre>
3490
3501
* // Consume messages for 'mygroup', 'consumer1'
@@ -3497,11 +3508,12 @@ public function xReadGroup($str_group, $str_consumer, $arr_streams, $i_count, $i
3497
3508
3498
3509
/**
3499
3510
* This is identical to xRange except the results come back in reverse order. Also note that Redis reverses the order of "start" and "end".
3500
-
* @param string $str_stream
3501
-
* @param int|string $i_end
3502
-
* @param int|string $i_start
3503
-
* @param int|string $i_count
3504
-
* @return array The messages in the range specified.
3511
+
* @param string $str_stream
3512
+
* @param int|string $i_end
3513
+
* @param int|string $i_start
3514
+
* @param int|string $i_count
3515
+
* @return array The messages in the range specified.
3516
+
* @link https://redis.io/commands/xrevrange
3505
3517
* @example
3506
3518
* <pre>
3507
3519
* $obj_redis->xRevRange('mystream', '+', '-');
@@ -3511,10 +3523,11 @@ public function xRevRange($str_stream, $i_end, $i_start, $i_count = null) {}
3511
3523
3512
3524
/**
3513
3525
* Trim the stream length to a given maximum. If the "approximate" flag is pasesed, Redis will use your size as a hint but only trim trees in whole nodes (this is more efficient)..
3514
-
* @param string $str_stream
3515
-
* @param int $i_max_len
3516
-
* @param bool $boo_approximate
3517
-
* @return int The number of messages trimed from the stream.
3526
+
* @param string $str_stream
3527
+
* @param int $i_max_len
3528
+
* @param bool $boo_approximate
3529
+
* @return int The number of messages trimed from the stream.
0 commit comments