add XACK command (#1555)

* add XACK command

* add XACK to ClientContextInterface

* modify CHANGELOG.md

---------

Co-authored-by: aleksanders <alexander.s@seranking.com>
Co-authored-by: Vladyslav Vildanov <117659936+vladvildanov@users.noreply.github.com>
This commit is contained in:
alschastny
2025-06-11 19:28:13 +03:00
committed by GitHub
parent 5e18e91ffc
commit b5b486a254
6 changed files with 131 additions and 1 deletions
+1
View File
@@ -3,6 +3,7 @@
## Unreleased
### Added
- Add experimental support for vector sets commands (#1550)
- Added support for `XACK` command (#1555)
### Changed
- Handle and retry `LOADING` errors from Sentinel replicas (#1536)
+1 -1
View File
@@ -15,7 +15,7 @@
// For example, to generate a test case for SET (which is represented by the
// Predis\Command\Redis\StringSet class):
//
// $ ./bin/generate-command-test --class=StringSet
// $ ./bin/create-command-test --class=StringSet
//
// Here is a list of optional arguments:
//
+1
View File
@@ -284,6 +284,7 @@ use Predis\Command\Redis\VADD;
* @method $this tsqueryindex(string ...$filterExpression)
* @method $this tsrange(string $key, $fromTimestamp, $toTimestamp, ?RangeArguments $arguments = null)
* @method $this tsrevrange(string $key, $fromTimestamp, $toTimestamp, ?RangeArguments $arguments = null)
* @method $this xack(string $key, string $group, string ...$id)
* @method $this zadd($key, array $membersAndScoresDictionary)
* @method $this zcard($key)
* @method $this zcount($key, $min, $max)
+1
View File
@@ -295,6 +295,7 @@ use Predis\Response\Status;
* @method array tsqueryindex(string ...$filterExpression)
* @method array tsrange(string $key, $fromTimestamp, $toTimestamp, ?RangeArguments $arguments = null)
* @method array tsrevrange(string $key, $fromTimestamp, $toTimestamp, ?RangeArguments $arguments = null)
* @method int xack(string $key, string $group, string ...$id)
* @method string xadd(string $key, array $dictionary, string $id = '*', array $options = null)
* @method array xautoclaim(string $key, string $group, string $consumer, int $minIdleTime, string $start, ?int $count = null, bool $justId = false)
* @method int xdel(string $key, string ...$id)
+34
View File
@@ -0,0 +1,34 @@
<?php
/*
* This file is part of the Predis package.
*
* (c) 2009-2020 Daniele Alessandri
* (c) 2021-2025 Till Krüss
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Predis\Command\Redis;
use Predis\Command\PrefixableCommand as RedisCommand;
/**
* @see http://redis.io/commands/xack
*/
class XACK extends RedisCommand
{
/**
* {@inheritdoc}
*/
public function getId()
{
return 'XACK';
}
public function prefixKeys($prefix)
{
$this->applyPrefixForFirstArgument($prefix);
}
}
+93
View File
@@ -0,0 +1,93 @@
<?php
/*
* This file is part of the Predis package.
*
* (c) 2009-2020 Daniele Alessandri
* (c) 2021-2025 Till Krüss
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Predis\Command\Redis;
/**
* @group commands
* @group realm-stream
*/
class XACK_Test extends PredisCommandTestCase
{
/**
* {@inheritdoc}
*/
protected function getExpectedCommand(): string
{
return 'Predis\Command\Redis\XACK';
}
/**
* {@inheritdoc}
*/
protected function getExpectedId(): string
{
return 'XACK';
}
/**
* @group disconnected
*/
public function testFilterArguments(): void
{
$arguments = ['stream', 'group', 'id1', 'id2', 'id3'];
$expected = ['stream', 'group', 'id1', 'id2', 'id3'];
$command = $this->getCommand();
$command->setArguments($arguments);
$this->assertSame($expected, $command->getArguments());
}
/**
* @group disconnected
*/
public function testParseResponse(): void
{
$this->assertSame(1, $this->getCommand()->parseResponse(1));
}
/**
* @group disconnected
*/
public function testPrefixKeys(): void
{
$arguments = ['stream', 'group', 'id1', 'id2', 'id3'];
$expected = ['prefix:stream', 'group', 'id1', 'id2', 'id3'];
$command = $this->getCommandWithArgumentsArray($arguments);
$command->prefixKeys('prefix:');
$this->assertSame($expected, $command->getArguments());
}
/**
* @group connected
* @requiresRedisVersion >= 5.0.0
*/
public function testAck(): void
{
$redis = $this->getClient();
$redis->xadd('stream', ['key0' => 'val0'], '0-1');
$redis->xadd('stream', ['key1' => 'val1'], '1-1');
$redis->xadd('stream', ['key2' => 'val2'], '2-1');
$redis->xgroup->create('stream', 'group', '0');
$redis->xreadgroup('group', 'consumer1', 1, null, false, 'stream', '>');
$this->assertSame(1, $redis->xack('stream', 'group', '0-1'));
$this->assertSame(0, $redis->xack('stream', 'group', '1-1'));
$redis->xreadgroup('group', 'consumer1', 2, null, false, 'stream', '>');
$this->assertSame(2, $redis->xack('stream', 'group', '1-1', '2-1'));
$this->assertSame(0, $redis->xack('stream', 'group', '1-1', '2-1'));
}
}