webman-rqueue icon indicating copy to clipboard operation
webman-rqueue copied to clipboard

🚀🐇 A lightweight queue based on Redis Stream for webman plugin.

Results 2 webman-rqueue issues
Sort by recently updated
recently updated
newest added

目前只做了 1. command的基础使用的测试 2. publish的基础测试

documentation
enhancement

[https://github.com/workbunny/webman-rqueue/blob/master/src/Builders/Traits/MessageQueueMethod.php,351行这里的$datas[2]永远都是空数组](https://github.com/workbunny/webman-rqueue/blob/master/src/Builders/Traits/MessageQueueMethod.php#L351) ` if ($datas = $datas[2] ?? []) {` redis6.2版本中xAutoClaim命令查询出来 redis7.4版本中xAutoClaim命令查询出来 建议修改为 `if ($datas = $datas[1] ?? []) {` [https://github.com/workbunny/webman-rqueue/blob/master/src/Builders/Traits/MessageQueueMethod.php,352行](https://github.com/workbunny/webman-rqueue/blob/master/src/Builders/Traits/MessageQueueMethod.php#L352) `if ($client->xAck($queueName, $groupName, $datas)) {` 建议修改为 `if ($client->xAck($queueName, $groupName, array_keys($datas)))...