|
14 | 14 |
|
15 | 15 | use Predis\Command\Argument\Geospatial\ByInterface;
|
16 | 16 | use Predis\Command\Argument\Geospatial\FromInterface;
|
| 17 | +use Predis\Command\Argument\Server\LimitOffsetCount; |
17 | 18 | use Predis\Command\Argument\Server\To;
|
18 | 19 | use Predis\Command\CommandInterface;
|
19 | 20 | use Predis\Command\FactoryInterface;
|
| 21 | +use Predis\Command\Redis\Container\FunctionContainer; |
20 | 22 | use Predis\Configuration\OptionsInterface;
|
21 | 23 | use Predis\Connection\ConnectionInterface;
|
22 | 24 | use Predis\Response\Status;
|
|
33 | 35 | * @method int del(string[]|string $keyOrKeys, string ...$keys = null)
|
34 | 36 | * @method string|null dump(string $key)
|
35 | 37 | * @method int exists(string $key)
|
36 |
| - * @method int expire(string $key, int $seconds) |
37 |
| - * @method int expireat(string $key, int $timestamp) |
| 38 | + * @method int expire(string $key, int $seconds, string $expireOption = '') |
| 39 | + * @method int expireat(string $key, int $timestamp, string $expireOption = '') |
38 | 40 | * @method int expiretime(string $key)
|
39 | 41 | * @method array keys(string $pattern)
|
40 | 42 | * @method int move(string $key, int $db)
|
|
48 | 50 | * @method int renamenx(string $key, string $target)
|
49 | 51 | * @method array scan($cursor, array $options = null)
|
50 | 52 | * @method array sort(string $key, array $options = null)
|
| 53 | + * @method array sort_ro(string $key, ?string $byPattern = null, ?LimitOffsetCount $limit = null, array $getPatterns = [], ?string $sorting = null, bool $alpha = false) |
51 | 54 | * @method int ttl(string $key)
|
52 | 55 | * @method mixed type(string $key)
|
53 | 56 | * @method int append(string $key, $value)
|
| 57 | + * @method int bitcount(string $key, $start = null, $end = null, string $index = 'byte') |
54 | 58 | * @method int bfadd(string $key, $item)
|
55 | 59 | * @method int bfexists(string $key, $item)
|
56 | 60 | * @method array bfinfo(string $key, string $modifier = '')
|
|
60 | 64 | * @method array bfmexists(string $key, ...$item)
|
61 | 65 | * @method Status bfreserve(string $key, float $errorRate, int $capacity, int $expansion = -1, bool $nonScaling = false)
|
62 | 66 | * @method array bfscandump(string $key, int $iterator)
|
63 |
| - * @method int bitcount(string $key, $start = null, $end = null) |
64 | 67 | * @method int bitop($operation, $destkey, $key)
|
65 | 68 | * @method array|null bitfield(string $key, $subcommand, ...$subcommandArg)
|
66 |
| - * @method int bitpos(string $key, $bit, $start = null, $end = null) |
| 69 | + * @method int bitpos(string $key, $bit, $start = null, $end = null, string $index = 'byte') |
67 | 70 | * @method array blmpop(int $timeout, array $keys, string $modifier = 'left', int $count = 1)
|
68 | 71 | * @method array bzpopmax(array $keys, int $timeout)
|
69 | 72 | * @method array bzpopmin(array $keys, int $timeout)
|
|
89 | 92 | * @method int decr(string $key)
|
90 | 93 | * @method int decrby(string $key, int $decrement)
|
91 | 94 | * @method Status failover(?To $to = null, bool $abort = false, int $timeout = -1)
|
| 95 | + * @method mixed fcall(string $function, array $keys, ...$args) |
92 | 96 | * @method string|null get(string $key)
|
93 | 97 | * @method int getbit(string $key, $offset)
|
94 | 98 | * @method int|null getex(string $key, $modifier = '', $value = false)
|
|
283 | 287 | * @method array georadiusbymember(string $key, $member, $radius, $unit, array $options = null)
|
284 | 288 | * @method array geosearch(string $key, FromInterface $from, ByInterface $by, ?string $sorting = null, int $count = -1, bool $any = false, bool $withCoord = false, bool $withDist = false, bool $withHash = false)
|
285 | 289 | * @method int geosearchstore(string $destination, string $source, FromInterface $from, ByInterface $by, ?string $sorting = null, int $count = -1, bool $any = false, bool $storeDist = false)
|
| 290 | + * |
| 291 | + * Container commands |
| 292 | + * @property FunctionContainer $function |
286 | 293 | */
|
287 | 294 | interface ClientInterface
|
288 | 295 | {
|
|
0 commit comments