From d45c4d294c8d00358c63d4dcd8edf1eb37f008e7 Mon Sep 17 00:00:00 2001 From: michael-grunder Date: Sun, 9 Nov 2025 17:36:06 -0800 Subject: [PATCH] docs: We want our docs based on `develop` not `main` --- docs/PROJECT_VERSION | 2 +- docs/Redis.html | 584 ++++++++++++++++---------------- docs/RedisArray.html | 562 +++++++++++++++--------------- docs/RedisCluster.html | 522 ++++++++++++++-------------- docs/RedisClusterException.html | 4 +- docs/RedisException.html | 4 +- docs/RedisSentinel.html | 28 +- docs/[Global_Namespace].html | 2 +- docs/classes.html | 2 +- docs/doc-index.html | 2 +- docs/index.html | 2 +- docs/interfaces.html | 2 +- docs/namespaces.html | 2 +- docs/opensearch.xml | 4 +- docs/renderer.index | 2 +- docs/search.html | 2 +- docs/traits.html | 2 +- doctum-config.php | 1 + 18 files changed, 865 insertions(+), 864 deletions(-) diff --git a/docs/PROJECT_VERSION b/docs/PROJECT_VERSION index 88d050b1..ce57f645 100644 --- a/docs/PROJECT_VERSION +++ b/docs/PROJECT_VERSION @@ -1 +1 @@ -main \ No newline at end of file +develop \ No newline at end of file diff --git a/docs/Redis.html b/docs/Redis.html index 8da64088..bb7e24f3 100644 --- a/docs/Redis.html +++ b/docs/Redis.html @@ -229,7 +229,7 @@ + title="PhpRedis API (develop)" /> @@ -292,7 +292,7 @@

class - Redis (View source) + Redis (View source)

@@ -3765,7 +3765,7 @@ cardinality of the intersected set.

- + Redis __construct(array|null $options = null)

@@ -3875,7 +3875,7 @@ Redis::connect

- + __destruct()

@@ -3898,7 +3898,7 @@ Redis::connect

- + string _compress(string $value)

@@ -3962,7 +3962,7 @@ Redis::setOption

- + string _uncompress(string $value)

@@ -4026,7 +4026,7 @@ Redis::setOption

- + string _prefix(string $key)

@@ -4078,7 +4078,7 @@ with Redis::setOption().

- + string _serialize(mixed $value)

@@ -4142,7 +4142,7 @@ Redis::setOption

- + mixed _unserialize(string $value)

@@ -4206,7 +4206,7 @@ Redis::setOption

- + string _pack(mixed $value)

@@ -4260,7 +4260,7 @@ compressed.

- + string _digest(mixed $value)

@@ -4321,7 +4321,7 @@ the same digest Redis' DIGEST command would return for the stored value.

- + mixed _unpack(string $value)

@@ -4374,7 +4374,7 @@ the original PHP value.

- + mixed acl(string $subcmd, string ...$args)

@@ -4423,7 +4423,7 @@ the original PHP value.

- + Redis|int|false append(string $key, mixed $value)

@@ -4491,7 +4491,7 @@ $redis->append('foo', 'world');

- + Redis|bool auth(mixed $credentials)

@@ -4555,7 +4555,7 @@ $redis->auth(['username', 'password']);

- + Redis|bool bgSave()

@@ -4607,7 +4607,7 @@ $redis->auth(['username', 'password']);

- + Redis|bool bgrewriteaof()

@@ -4659,7 +4659,7 @@ $redis->auth(['username', 'password']);

- + Redis|array|false waitaof(int $numlocal, int $numreplicas, int $timeout)

@@ -4732,7 +4732,7 @@ $redis->auth(['username', 'password']);

- + Redis|int|false bitcount(string $key, int $start = 0, int $end = -1, bool $bybit = false)

@@ -4812,7 +4812,7 @@ positions, rather than bytes.

- + Redis|int|false bitop(string $operation, string $deskey, string $srckey, string ...$other_keys)

@@ -4871,7 +4871,7 @@ positions, rather than bytes.

- + Redis|int|false bitpos(string $key, bool $bit, int $start = 0, int $end = -1, bool $bybit = false)

@@ -4954,7 +4954,7 @@ was 0 and end was 2, Redis would only search the first two bits.

- + Redis|array|null|false blPop(string|array $key_or_keys, string|float|int $timeout_or_key, mixed ...$extra_args)

@@ -5031,7 +5031,7 @@ $relay->blPop(['list1', 'list2', 'list3'], 1.5)

- + Redis|array|null|false brPop(string|array $key_or_keys, string|float|int $timeout_or_key, mixed ...$extra_args)

@@ -5110,7 +5110,7 @@ Redis::blPop

- + Redis|string|false brpoplpush(string $src, string $dst, int|float $timeout)

@@ -5184,7 +5184,7 @@ to Redis >= 6.0.0 to send a floating point timeout.

- + Redis|array|false bzPopMax(string|array $key, string|int $timeout_or_key, mixed ...$extra_args)

@@ -5263,7 +5263,7 @@ $redis->bzPopMax(['key1', 'key2', 'key3'], 1.5)

- + Redis|array|false bzPopMin(string|array $key, string|int $timeout_or_key, mixed ...$extra_args)

@@ -5343,7 +5343,7 @@ Redis::bzPopMax

- + Redis|array|null|false bzmpop(float $timeout, array $keys, string $from, int $count = 1)

@@ -5415,7 +5415,7 @@ instead return NULL when Redis doesn't pop any elements.

- + Redis|array|null|false zmpop(array $keys, string $from, int $count = 1)

@@ -5488,7 +5488,7 @@ pop the lowest or highest scoring elements.

- + Redis|array|null|false blmpop(float $timeout, array $keys, string $from, int $count = 1)

@@ -5568,7 +5568,7 @@ were empty.

- + Redis|array|null|false lmpop(array $keys, string $from, int $count = 1)

@@ -5642,7 +5642,7 @@ were empty.

- + bool clearLastError()

@@ -5700,7 +5700,7 @@ var_dump($redis->getLastError());

- + mixed client(string $opt, mixed ...$args)

@@ -5749,7 +5749,7 @@ var_dump($redis->getLastError());

- + bool close()

@@ -5783,7 +5783,7 @@ var_dump($redis->getLastError());

- + mixed command(string|null $opt = null, mixed ...$args)

@@ -5832,7 +5832,7 @@ var_dump($redis->getLastError());

- + mixed config(string $operation, array|string|null $key_or_settings = null, string|null $value = null)

@@ -5908,7 +5908,7 @@ $redis->config('SET', ['timeout' => 30, 'loglevel

- + bool connect(string $host, int $port = 6379, float $timeout = 0, string|null $persistent_id = null, int $retry_interval = 0, float $read_timeout = 0, array|null $context = null)

@@ -5982,7 +5982,7 @@ $redis->config('SET', ['timeout' => 30, 'loglevel

- + Redis|bool copy(string $src, string $dst, array|null $options = null)

@@ -6069,7 +6069,7 @@ var_dump($redis->copy('source1', 'exists', ['REPLACE

- + Redis|int|false dbSize()

@@ -6126,7 +6126,7 @@ var_dump($redis->dbsize());

- + Redis|string debug(string $key)

@@ -6170,7 +6170,7 @@ var_dump($redis->dbsize());

- + Redis|int|false decr(string $key, int $by = 1)

@@ -6249,7 +6249,7 @@ PhpRedis will actually send the DECRBY command.

- + Redis|int|false decrBy(string $key, int $value)

@@ -6319,7 +6319,7 @@ PhpRedis will actually send the DECRBY command.

- + Redis|int|false del(array|string $key, string ...$other_keys)

@@ -6392,7 +6392,7 @@ the name of a key.

- + Redis|int|false delex(string $key, array|null $options = null)

@@ -6448,7 +6448,7 @@ the name of a key.

- + Redis|int|false delifeq(string $key, mixed $value)

@@ -6505,7 +6505,7 @@ specific to Valkey >= 9.0

- + Redis|int|false delete(array|string $key, string ...$other_keys) deprecated

@@ -6569,7 +6569,7 @@ specific to Valkey >= 9.0

- + Redis|bool discard()

@@ -6613,7 +6613,7 @@ $redis->getMode();

- + Redis|string|false dump(string $key)

@@ -6677,7 +6677,7 @@ $redis->restore('new-zset', 0, $binary);

- + Redis|string|false echo(string $str)

@@ -6739,7 +6739,7 @@ $redis->restore('new-zset', 0, $binary);

- + mixed eval(string $script, array $args = [], int $num_keys = 0)

@@ -6814,7 +6814,7 @@ strings, arrays, nested arrays, etc.

- + mixed eval_ro(string $script_sha, array $args = [], int $num_keys = 0)

@@ -6888,7 +6888,7 @@ Redis::eval_ro

- + mixed evalsha(string $sha1, array $args = [], int $num_keys = 0)

@@ -6972,7 +6972,7 @@ $redis->evalsha($sha, ['counter'], 1);

- + mixed evalsha_ro(string $sha1, array $args = [], int $num_keys = 0)

@@ -7047,7 +7047,7 @@ $redis->evalsha_ro($sha, ['counter'], 1);

- + Redis|array|false exec()

@@ -7124,7 +7124,7 @@ Redis::multi

- + Redis|int|bool exists(mixed $key, mixed ...$other_keys)

@@ -7195,7 +7195,7 @@ additional keys to test.

- + Redis|bool expire(string $key, int $timeout, string|null $mode = null)

@@ -7274,7 +7274,7 @@ GT - Set expiry only when new expiry is > current expiry

- + Redis|bool expireAt(string $key, int $timestamp, string|null $mode = null)

@@ -7359,7 +7359,7 @@ Redis::expire

- + Redis|bool failover(array|null $to = null, bool $abort = false, int $timeout = 0)

@@ -7413,7 +7413,7 @@ Redis::expire

- + Redis|int|false expiretime(string $key)

@@ -7477,7 +7477,7 @@ $redis->expiretime('mykey');

- + Redis|int|false pexpiretime(string $key)

@@ -7547,7 +7547,7 @@ Redis::expiretime

- + mixed fcall(string $fn, array $keys = [], array $args = [])

@@ -7620,7 +7620,7 @@ strings, arrays, nested arrays, etc.

- + mixed fcall_ro(string $fn, array $keys = [], array $args = [])

@@ -7693,7 +7693,7 @@ strings, arrays, nested arrays, etc.

- + Redis|bool flushAll(bool|null $sync = null)

@@ -7755,7 +7755,7 @@ strings, arrays, nested arrays, etc.

- + Redis|bool flushDB(bool|null $sync = null)

@@ -7817,7 +7817,7 @@ strings, arrays, nested arrays, etc.

- + Redis|bool|string|array function(string $operation, mixed ...$args)

@@ -7892,7 +7892,7 @@ strings, arrays, nested arrays, etc.

- + Redis|int|false geoadd(string $key, float $lng, float $lat, string $member, mixed ...$other_triples_and_options)

@@ -7980,7 +7980,7 @@ the return value is the number of members changed.

- + Redis|float|false geodist(string $key, string $src, string $dst, string|null $unit = null)

@@ -8062,7 +8062,7 @@ if one or both members did not exist.

- + Redis|array|false geohash(string $key, string $member, string ...$other_members)

@@ -8140,7 +8140,7 @@ if one or both members did not exist.

- + Redis|array|false geopos(string $key, string $member, string ...$other_members)

@@ -8212,7 +8212,7 @@ if one or both members did not exist.

- + mixed georadius(string $key, float $lng, float $lat, float $radius, string $unit, array $options = [])

@@ -8316,7 +8316,7 @@ See Redis::geodist for possible units.

- + mixed georadius_ro(string $key, float $lng, float $lat, float $radius, string $unit, array $options = [])

@@ -8403,7 +8403,7 @@ See Redis::geodist for possible units.

- + mixed georadiusbymember(string $key, string $member, float $radius, string $unit, array $options = [])

@@ -8476,7 +8476,7 @@ See Redis::georadius for options.

<

- + mixed georadiusbymember_ro(string $key, string $member, float $radius, string $unit, array $options = [])

@@ -8547,7 +8547,7 @@ See Redis::georadius for options.

<

- + array geosearch(string $key, array|string $position, array|int|float $shape, string $unit, array $options = [])

@@ -8622,7 +8622,7 @@ options are not allowed for this command.

- + Redis|array|int|false geosearchstore(string $dst, string $src, array|string $position, array|int|float $shape, string $unit, array $options = [])

@@ -8709,7 +8709,7 @@ to search.

- + mixed get(string $key)

@@ -8771,7 +8771,7 @@ to search.

- + Redis|array|false getWithMeta(string $key)

@@ -8822,7 +8822,7 @@ to search.

- + mixed getAuth()

@@ -8875,7 +8875,7 @@ Redis::auth

- + Redis|int|false getBit(string $key, int $idx)

@@ -8942,7 +8942,7 @@ Redis::auth

- + Redis|string|bool getEx(string $key, array $options = [])

@@ -9016,7 +9016,7 @@ Redis::auth

- + int getDBNum()

@@ -9075,7 +9075,7 @@ Redis::select

- + Redis|string|bool getDel(string $key)

@@ -9137,7 +9137,7 @@ Redis::select

- + string getHost()

@@ -9178,7 +9178,7 @@ Redis::select

- + string|null getLastError()

@@ -9219,7 +9219,7 @@ Redis::select

- + int getMode()

@@ -9260,7 +9260,7 @@ Redis::select

- + mixed getOption(int $option)

@@ -9323,7 +9323,7 @@ Redis::setOption

- + string|null getPersistentID()

@@ -9364,7 +9364,7 @@ Redis::setOption

- + int getPort()

@@ -9405,7 +9405,7 @@ Redis::setOption

- + string|false serverName()

@@ -9446,7 +9446,7 @@ Redis::setOption

- + string|false serverVersion()

@@ -9487,7 +9487,7 @@ Redis::setOption

- + Redis|string|false getRange(string $key, int $start, int $end)

@@ -9560,7 +9560,7 @@ echo $redis->getRange('silly-word', 0, 4) . "\n";

- + Redis|string|array|int|false lcs(string $key1, string $key2, array|null $options = null)

@@ -9645,7 +9645,7 @@ echo $redis->lcs('seq1', 'seq2') . "\n";<

- + float getReadTimeout()

@@ -9686,7 +9686,7 @@ echo $redis->lcs('seq1', 'seq2') . "\n";<

- + Redis|string|false getset(string $key, mixed $value)

@@ -9754,7 +9754,7 @@ $redis->getset('captain', 'Kirk');

- + float|false getTimeout()

@@ -9795,7 +9795,7 @@ $redis->getset('captain', 'Kirk');

- + array getTransferredBytes()

@@ -9836,7 +9836,7 @@ $redis->getset('captain', 'Kirk');

- + void clearTransferredBytes()

@@ -9877,7 +9877,7 @@ $redis->getset('captain', 'Kirk');

- + Redis|int|false hDel(string $key, string $field, string ...$other_fields)

@@ -9949,7 +9949,7 @@ $redis->getset('captain', 'Kirk');

- + Redis|bool hExists(string $key, string $field)

@@ -10016,7 +10016,7 @@ $redis->getset('captain', 'Kirk');

- + mixed hGet(string $key, string $member)

@@ -10065,7 +10065,7 @@ $redis->getset('captain', 'Kirk');

- + Redis|array|false hGetAll(string $key)

@@ -10127,7 +10127,7 @@ $redis->getset('captain', 'Kirk');

- + mixed hGetWithMeta(string $key, string $member)

@@ -10183,7 +10183,7 @@ $redis->getset('captain', 'Kirk');

- + Redis|int|false hIncrBy(string $key, string $field, int $value)

@@ -10256,7 +10256,7 @@ $redis->hincrby('player:1', 'score', 10);

- + Redis|float|false hIncrByFloat(string $key, string $field, float $value)

@@ -10328,7 +10328,7 @@ $redis->hincrby('player:1', 'score', 10);

- + Redis|array|false hKeys(string $key)

@@ -10390,7 +10390,7 @@ $redis->hincrby('player:1', 'score', 10);

- + Redis|int|false hLen(string $key)

@@ -10452,7 +10452,7 @@ $redis->hincrby('player:1', 'score', 10);

- + Redis|array|false hMget(string $key, array $fields)

@@ -10519,7 +10519,7 @@ $redis->hincrby('player:1', 'score', 10);

- + Redis|array|false hgetex(string $key, array $fields, string|array|null $expiry = null)

@@ -10581,7 +10581,7 @@ information

- + Redis|int|false hsetex(string $key, array $fields, array|null $expiry = null)

@@ -10642,7 +10642,7 @@ information

- + Redis|array|false hgetdel(string $key, array $fields)

@@ -10698,7 +10698,7 @@ information

- + Redis|bool hMset(string $key, array $fieldvals)

@@ -10765,7 +10765,7 @@ information

- + Redis|string|array|false hRandField(string $key, array|null $options = null)

@@ -10839,7 +10839,7 @@ information

- + Redis|int|false hSet(string $key, mixed ...$fields_and_vals)

@@ -10910,7 +10910,7 @@ fields and their values.

- + Redis|bool hSetNx(string $key, string $field, mixed $value)

@@ -10983,7 +10983,7 @@ $redis->hsetnx('player:1', 'lock', 'enabled');<

- + Redis|int|false hStrLen(string $key, string $field)

@@ -11053,7 +11053,7 @@ $redis->hstrlen('hash', '50bytes');

- + Redis|array|false hVals(string $key)

@@ -11115,7 +11115,7 @@ $redis->hstrlen('hash', '50bytes');

- + Redis|array|false hexpire(string $key, int $ttl, array $fields, string|null $mode = NULL)

@@ -11192,7 +11192,7 @@ $redis->hstrlen('hash', '50bytes');

- + Redis|array|false hpexpire(string $key, int $ttl, array $fields, string|null $mode = NULL)

@@ -11269,7 +11269,7 @@ $redis->hstrlen('hash', '50bytes');

- + Redis|array|false hexpireat(string $key, int $time, array $fields, string|null $mode = NULL)

@@ -11346,7 +11346,7 @@ $redis->hstrlen('hash', '50bytes');

- + Redis|array|false hpexpireat(string $key, int $mstime, array $fields, string|null $mode = NULL)

@@ -11423,7 +11423,7 @@ $redis->hstrlen('hash', '50bytes');

- + Redis|array|false httl(string $key, array $fields)

@@ -11490,7 +11490,7 @@ $redis->hstrlen('hash', '50bytes');

- + Redis|array|false hpttl(string $key, array $fields)

@@ -11557,7 +11557,7 @@ $redis->hstrlen('hash', '50bytes');

- + Redis|array|false hexpiretime(string $key, array $fields)

@@ -11624,7 +11624,7 @@ $redis->hstrlen('hash', '50bytes');

- + Redis|array|false hpexpiretime(string $key, array $fields)

@@ -11691,7 +11691,7 @@ $redis->hstrlen('hash', '50bytes');

- + Redis|array|false hpersist(string $key, array $fields)

@@ -11758,7 +11758,7 @@ $redis->hstrlen('hash', '50bytes');

- + Redis|array|bool hscan(string $key, null|int|string $iterator, string|null $pattern = null, int $count = 0)

@@ -11862,7 +11862,7 @@ do {

- + Redis|int|false expiremember(string $key, string $field, int $ttl, string|null $unit = null)

@@ -11939,7 +11939,7 @@ do {

- + Redis|int|false expirememberat(string $key, string $field, int $timestamp)

@@ -12011,7 +12011,7 @@ do {

- + Redis|int|false incr(string $key, int $by = 1)

@@ -12087,7 +12087,7 @@ do {

- + Redis|int|false incrBy(string $key, int $value)

@@ -12158,7 +12158,7 @@ $redis->incrby('primes', 4);

- + Redis|float|false incrByFloat(string $key, float $value)

@@ -12215,7 +12215,7 @@ $redis->incrbyfloat('tau', 3.1415926);

- + Redis|array|false info(string ...$sections)

@@ -12280,7 +12280,7 @@ to that section.

If connected to Redis server >=

- + bool isConnected()

@@ -12321,7 +12321,7 @@ to that section.

If connected to Redis server >=

- + Redis|list&lt;string&gt;|false keys(string $pattern)

@@ -12373,7 +12373,7 @@ to that section.

If connected to Redis server >=

- + Redis|int|false lInsert(string $key, string $pos, mixed $pivot, mixed $value)

@@ -12440,7 +12440,7 @@ to that section.

If connected to Redis server >=

- + Redis|int|false lLen(string $key)

@@ -12491,7 +12491,7 @@ to that section.

If connected to Redis server >=

- + Redis|string|false lMove(string $src, string $dst, string $wherefrom, string $whereto)

@@ -12564,7 +12564,7 @@ $redis->lMove('numbers', 'odds', Redis::LEFT, Redis::LEFT

- + Redis|string|false blmove(string $src, string $dst, string $wherefrom, string $whereto, float $timeout)

@@ -12628,7 +12628,7 @@ $redis->lMove('numbers', 'odds', Redis::LEFT, Redis::LEFT

- + Redis|bool|string|array lPop(string $key, int $count = 0)

@@ -12699,7 +12699,7 @@ if none was removed.

- + Redis|null|bool|int|array lPos(string $key, mixed $value, array|null $options = null)

@@ -12775,7 +12775,7 @@ if none was removed.

- + Redis|int|false lPush(string $key, mixed ...$elements)

@@ -12842,7 +12842,7 @@ if none was removed.

- + Redis|int|false rPush(string $key, mixed ...$elements)

@@ -12909,7 +12909,7 @@ if none was removed.

- + Redis|int|false lPushx(string $key, mixed $value)

@@ -12965,7 +12965,7 @@ if none was removed.

- + Redis|int|false rPushx(string $key, mixed $value)

@@ -13021,7 +13021,7 @@ if none was removed.

- + Redis|bool lSet(string $key, int $index, mixed $value)

@@ -13093,7 +13093,7 @@ if none was removed.

- + int lastSave()

@@ -13145,7 +13145,7 @@ if none was removed.

- + mixed lindex(string $key, int $index)

@@ -13201,7 +13201,7 @@ if none was removed.

- + Redis|array|false lrange(string $key, int $start, int $end)

@@ -13267,7 +13267,7 @@ from the end of the list.

- + Redis|int|false lrem(string $key, mixed $value, int $count = 0)

@@ -13339,7 +13339,7 @@ from the end of the list.

- + Redis|bool ltrim(string $key, int $start, int $end)

@@ -13400,7 +13400,7 @@ from the end of the list.

- + Redis|array|false mget(array $keys)

@@ -13451,7 +13451,7 @@ from the end of the list.

- + Redis|bool migrate(string $host, int $port, string|array $key, int $dstdb, int $timeout, bool $copy = false, bool $replace = false, mixed $credentials = null)

@@ -13530,7 +13530,7 @@ from the end of the list.

- + Redis|bool move(string $key, int $index)

@@ -13586,7 +13586,7 @@ from the end of the list.

- + Redis|bool mset(array $key_values)

@@ -13648,7 +13648,7 @@ from the end of the list.

- + Redis|bool msetnx(array $key_values)

@@ -13710,7 +13710,7 @@ from the end of the list.

- + bool|Redis multi(int $value = Redis::MULTI)

@@ -13776,7 +13776,7 @@ $redis->exec();

- + Redis|int|string|false object(string $subcommand, string $key)

@@ -13825,7 +13825,7 @@ $redis->exec();

- + bool open(string $host, int $port = 6379, float $timeout = 0, string|null $persistent_id = null, int $retry_interval = 0, float $read_timeout = 0, array|null $context = null) deprecated

@@ -13914,7 +13914,7 @@ $redis->exec();

- + bool pconnect(string $host, int $port = 6379, float $timeout = 0, string|null $persistent_id = null, int $retry_interval = 0, float $read_timeout = 0, array|null $context = null)

@@ -13988,7 +13988,7 @@ $redis->exec();

- + Redis|bool persist(string $key)

@@ -14039,7 +14039,7 @@ $redis->exec();

- + bool pexpire(string $key, int $timeout, string|null $mode = null)

@@ -14114,7 +14114,7 @@ Redis::expire

- + Redis|bool pexpireAt(string $key, int $timestamp, string|null $mode = null)

@@ -14195,7 +14195,7 @@ Redis::expire

- + Redis|int pfadd(string $key, array $elements)

@@ -14262,7 +14262,7 @@ Redis::expire

- + Redis|int|false pfcount(array|string $key_or_keys)

@@ -14324,7 +14324,7 @@ Redis::expire

- + Redis|bool pfmerge(string $dst, array $srckeys)

@@ -14391,7 +14391,7 @@ Redis::expire

- + Redis|string|bool ping(string|null $message = null)

@@ -14457,7 +14457,7 @@ If a message is passed, it will return the message.

- + bool|Redis pipeline()

@@ -14505,7 +14505,7 @@ when the user calls Redis::exec().

- + bool popen(string $host, int $port = 6379, float $timeout = 0, string|null $persistent_id = null, int $retry_interval = 0, float $read_timeout = 0, array|null $context = null) deprecated

@@ -14594,7 +14594,7 @@ when the user calls Redis::exec().

- + Redis|bool psetex(string $key, int $expire, mixed $value)

@@ -14655,7 +14655,7 @@ when the user calls Redis::exec().

- + bool psubscribe(array $patterns, callable $cb)

@@ -14725,7 +14725,7 @@ when the user calls Redis::exec().

- + Redis|int|false pttl(string $key)

@@ -14789,7 +14789,7 @@ when the user calls Redis::exec().

- + Redis|int|false publish(string $channel, string $message)

@@ -14856,7 +14856,7 @@ when the user calls Redis::exec().

- + mixed pubsub(string $command, mixed $arg = null)

@@ -14905,7 +14905,7 @@ when the user calls Redis::exec().

- + Redis|array|bool punsubscribe(array $patterns)

@@ -14980,7 +14980,7 @@ Redis::subscribe

- + Redis|array|string|bool rPop(string $key, int $count = 0)

@@ -15051,7 +15051,7 @@ NOTE: The count argument requires Redis >= 6.2.0

- + Redis|string|false randomKey()

@@ -15103,7 +15103,7 @@ NOTE: The count argument requires Redis >= 6.2.0

- + mixed rawcommand(string $command, mixed ...$args)

@@ -15165,7 +15165,7 @@ NOTE: The count argument requires Redis >= 6.2.0

- + Redis|bool rename(string $old_name, string $new_name)

@@ -15232,7 +15232,7 @@ NOTE: The count argument requires Redis >= 6.2.0

- + Redis|bool renameNx(string $key_src, string $key_dst)

@@ -15303,7 +15303,7 @@ $redis->renamenx('dst', 'existing-dst');

- + Redis|bool reset()

@@ -15344,7 +15344,7 @@ $redis->renamenx('dst', 'existing-dst');

- + Redis|bool restore(string $key, int $ttl, string $value, array|null $options = null)

@@ -15450,7 +15450,7 @@ $redis->restore('captains-backup', 0, $serialized);

- + mixed role()

@@ -15492,7 +15492,7 @@ an error.

- + Redis|string|false rpoplpush(string $srckey, string $dstkey)

@@ -15566,7 +15566,7 @@ $redis->rpoplpush('list2', 'list1');

- + Redis|int|false sAdd(string $key, mixed $value, mixed ...$other_values)

@@ -15641,7 +15641,7 @@ $redis->sadd('myset', 'foo', 'new');

- + int sAddArray(string $key, array $values)

@@ -15718,7 +15718,7 @@ $redis->sAddArray('myset', ['foo', 'new']);

- + Redis|array|false sDiff(string $key, string ...$other_keys)

@@ -15794,7 +15794,7 @@ $redis->sdiff('set1', 'set2', 'set3');

- + Redis|int|false sDiffStore(string $dst, string $key, string ...$other_keys)

@@ -15873,7 +15873,7 @@ values in a specified destination key.

- + Redis|array|false sInter(array|string $key, string ...$other_keys)

@@ -15950,7 +15950,7 @@ var_dump($redis->sinter('alice_likes', 'bob_likes', '

- + Redis|int|false sintercard(array $keys, int $limit = -1)

@@ -16024,7 +16024,7 @@ $redis->sInterCard(['set1', 'set2', 'set3']);

- + Redis|int|false sInterStore(array|string $key, string ...$other_keys)

@@ -16105,7 +16105,7 @@ be source key names.

- + Redis|array|false sMembers(string $key)

@@ -16168,7 +16168,7 @@ $redis->sMembers('tng-crew');

- + Redis|array|false sMisMember(string $key, string $member, string ...$other_members)

@@ -16254,7 +16254,7 @@ $members = $redis->sMIsMember('ds9-crew', ...['Sisko', &#

- + Redis|bool sMove(string $src, string $dst, mixed $value)

@@ -16330,7 +16330,7 @@ $redis->sMove('numbers', 'evens', 'four');

- + Redis|string|array|false sPop(string $key, int $count = 0)

@@ -16400,7 +16400,7 @@ $redis->sPop('numbers');

- + mixed sRandMember(string $key, int $count = 0)

@@ -16478,7 +16478,7 @@ but the result may contain duplicate elements.

- + Redis|array|false sUnion(string $key, string ...$other_keys)

@@ -16545,7 +16545,7 @@ but the result may contain duplicate elements.

- + Redis|int|false sUnionStore(string $dst, string $key, string ...$other_keys)

@@ -16624,7 +16624,7 @@ false on failure.

- + Redis|bool save()

@@ -16683,7 +16683,7 @@ completed. For a nonblocking alternative, see Redis::bgsave().

- + array|false scan(null|int|string $iterator, string|null $pattern = null, int $count = 0, string|null $type = null)

@@ -16806,7 +16806,7 @@ while ($keys = $redis->scan($it, '*zorg*')) {

- + Redis|int|false scard(string $key)

@@ -16868,7 +16868,7 @@ while ($keys = $redis->scan($it, '*zorg*')) {

- + mixed script(string $command, mixed ...$args)

@@ -16938,7 +16938,7 @@ while ($keys = $redis->scan($it, '*zorg*')) {

- + Redis|bool select(int $db)

@@ -17000,7 +17000,7 @@ while ($keys = $redis->scan($it, '*zorg*')) {

- + Redis|string|bool set(string $key, mixed $value, mixed $options = null)

@@ -17094,7 +17094,7 @@ key or NULL if the key didn't exist.

- + Redis|int|false setBit(string $key, int $idx, bool $value)

@@ -17167,7 +17167,7 @@ $redis->setbit('foo', 7, 1);

- + Redis|int|false setRange(string $key, int $index, string $value)

@@ -17240,7 +17240,7 @@ $redis->setRange('message', 6, 'Redis');

- + bool setOption(int $option, mixed $value)

@@ -17391,7 +17391,7 @@ Redis::__construct

- + Redis|bool setex(string $key, int $expire, mixed $value)

@@ -17452,7 +17452,7 @@ Redis::__construct

- + Redis|bool setnx(string $key, mixed $value)

@@ -17522,7 +17522,7 @@ Redis::__construct

- + Redis|bool sismember(string $key, mixed $value)

@@ -17578,7 +17578,7 @@ Redis::__construct

- + Redis|bool slaveof(string|null $host = null, int $port = 6379) deprecated

@@ -17670,7 +17670,7 @@ Redis::replicaof

- + Redis|bool replicaof(string|null $host = null, int $port = 6379)

@@ -17759,7 +17759,7 @@ $redis->replicaof();

- + Redis|int|false touch(array|string $key_or_array, string ...$more_keys)

@@ -17828,7 +17828,7 @@ had their last modified time reset

- + mixed slowlog(string $operation, int $length = 0)

@@ -17910,7 +17910,7 @@ entries, which is configurable.

- + mixed sort(string $key, array|null $options = null)

@@ -17991,7 +17991,7 @@ using the STORE option.

- + mixed sort_ro(string $key, array|null $options = null)

@@ -18059,7 +18059,7 @@ Redis::sort

- + array sortAsc(string $key, string|null $pattern = null, mixed $get = null, int $offset = -1, int $count = -1, string|null $store = null) deprecated

@@ -18143,7 +18143,7 @@ Redis::sort

- + array sortAscAlpha(string $key, string|null $pattern = null, mixed $get = null, int $offset = -1, int $count = -1, string|null $store = null) deprecated

@@ -18227,7 +18227,7 @@ Redis::sort

- + array sortDesc(string $key, string|null $pattern = null, mixed $get = null, int $offset = -1, int $count = -1, string|null $store = null) deprecated

@@ -18311,7 +18311,7 @@ Redis::sort

- + array sortDescAlpha(string $key, string|null $pattern = null, mixed $get = null, int $offset = -1, int $count = -1, string|null $store = null) deprecated

@@ -18395,7 +18395,7 @@ Redis::sort

- + Redis|int|false srem(string $key, mixed $value, mixed ...$other_values)

@@ -18467,7 +18467,7 @@ Redis::sort

- + array|false sscan(string $key, null|int|string $iterator, string|null $pattern = null, int $count = 0)

@@ -18597,7 +18597,7 @@ while (($members = $redis->sscan('myset', $it, '*5*'))) {

- + bool ssubscribe(array $channels, callable $cb)

@@ -18680,7 +18680,7 @@ echo "Subscribe loop ended\n";

- + Redis|int|false strlen(string $key)

@@ -18743,7 +18743,7 @@ false on failure.

- + bool subscribe(array $channels, callable $cb)

@@ -18826,7 +18826,7 @@ echo "Subscribe loop ended\n";

- + Redis|array|bool sunsubscribe(array $channels)

@@ -18905,7 +18905,7 @@ echo "We've unsubscribed from both channels, exiting\n";

- + Redis|bool swapdb(int $src, int $dst)

@@ -18984,7 +18984,7 @@ $redis->get('db0-key');

- + Redis|array time()

@@ -19037,7 +19037,7 @@ elapsed since the second.

- + Redis|int|false ttl(string $key)

@@ -19101,7 +19101,7 @@ error, this command will return false.

- + Redis|int|false type(string $key)

@@ -19174,7 +19174,7 @@ Redis::REDIS_VECTORSET
@@ -19261,7 +19261,7 @@ Redis::del

- + Redis|array|bool unsubscribe(array $channels)

@@ -19339,7 +19339,7 @@ echo "We've unsubscribed from both channels, exiting\n";

- + Redis|bool unwatch()

@@ -19404,7 +19404,7 @@ Redis::watch

- + Redis|bool watch(array|string $key, string ...$other_keys)

@@ -19501,7 +19501,7 @@ var_dump($res);

- + int|false wait(int $numreplicas, int $timeout)

@@ -19569,7 +19569,7 @@ receiving them.

- + int|false xack(string $key, string $group, array $ids)

@@ -19677,7 +19677,7 @@ var_dump($res);

- + Redis|string|false xadd(string $key, string $id, array $values, int $maxlen = 0, bool $approx = false, bool $nomkstream = false)

@@ -19774,7 +19774,7 @@ but in a more efficient way, meaning the trimming may not be exactly to

- + Redis|bool|array xautoclaim(string $key, string $group, string $consumer, int $min_idle, string $start, int $count = -1, bool $justid = false)

@@ -19894,7 +19894,7 @@ var_dump($pending);

- + Redis|array|bool xclaim(string $key, string $group, string $consumer, int $min_idle, array $ids, array $options)

@@ -20022,7 +20022,7 @@ var_dump($pending);

- + Redis|int|false xdel(string $key, array $ids)

@@ -20078,7 +20078,7 @@ var_dump($pending);

- + mixed xgroup(string $operation, string|null $key = null, string|null $group = null, string|null $id_or_consumer = null, bool $mkstream = false, int $entries_read = -2)

@@ -20184,7 +20184,7 @@ Note: Requires Redis >= 7.0.0.

- + mixed xinfo(string $operation, string|null $arg1 = null, string|null $arg2 = null, int $count = -1)

@@ -20267,7 +20267,7 @@ Note: Requires Redis >= 7.0.0.

- + Redis|int|false xlen(string $key)

@@ -20329,7 +20329,7 @@ Note: Requires Redis >= 7.0.0.

- + Redis|array|false xpending(string $key, string $group, string|null $start = null, string|null $end = null, int $count = -1, string|null $consumer = null)

@@ -20423,7 +20423,7 @@ acknowledged with XACK.

- + Redis|array|bool xrange(string $key, string $start, string $end, int $count = -1)

@@ -20503,7 +20503,7 @@ acknowledged with XACK.

- + Redis|array|bool xread(array $streams, int $count = -1, int $block = -1)

@@ -20583,7 +20583,7 @@ $redis->xRead(['s03' => '3-2', 's04' => &

- + Redis|array|bool xreadgroup(string $group, string $consumer, array $streams, int $count = 1, int $block = 1)

@@ -20682,7 +20682,7 @@ $msgs = $redis->xReadGroup('ds9', 'sisko', ['episode

- + Redis|array|bool xrevrange(string $key, string $end, string $start, int $count = -1)

@@ -20768,7 +20768,7 @@ $msgs = $redis->xReadGroup('ds9', 'sisko', ['episode

- + Redis|int|false vadd(string $key, array $values, mixed $element, array|null $options = null)

@@ -20834,7 +20834,7 @@ $msgs = $redis->xReadGroup('ds9', 'sisko', ['episode

- + Redis|array|false vsim(string $key, mixed $member, array|null $options = null)

@@ -20900,7 +20900,7 @@ array.

- + Redis|int|false vcard(string $key)

@@ -20951,7 +20951,7 @@ array.

- + Redis|int|false vdim(string $key)

@@ -21002,7 +21002,7 @@ array.

- + Redis|array|false vinfo(string $key)

@@ -21053,7 +21053,7 @@ array.

- + Redis|bool vismember(string $key, mixed $member)

@@ -21109,7 +21109,7 @@ array.

- + Redis|array|false vemb(string $key, mixed $member, bool $raw = false)

@@ -21170,7 +21170,7 @@ array.

- + Redis|array|string|false vrandmember(string $key, int $count = 0)

@@ -21226,7 +21226,7 @@ array.

- + Redis|array|false vrange(string $key, string $min, string $max, int $count = -1)

@@ -21292,7 +21292,7 @@ array.

- + Redis|int|false vrem(string $key, mixed $member)

@@ -21348,7 +21348,7 @@ array.

- + Redis|int|false vsetattr(string $key, mixed $member, array|string $attributes)

@@ -21411,7 +21411,7 @@ will be json encoded.

- + Redis|array|string|false vgetattr(string $key, mixed $member, bool $decode = true)

@@ -21472,7 +21472,7 @@ will be json encoded.

@@ -21533,7 +21533,7 @@ will be json encoded.

- + Redis|int|false xtrim(string $key, string $threshold, bool $approx = false, bool $minid = false, int $limit = -1)

@@ -21622,7 +21622,7 @@ more efficient for Redis given how streams are stored internally.

- + Redis|int|float|false zAdd(string $key, array|float $score_or_options, mixed ...$more_scores_and_mems)

@@ -21718,7 +21718,7 @@ will send whichever one is last in the options array.

- + Redis|int|false zCard(string $key)

@@ -21780,7 +21780,7 @@ will send whichever one is last in the options array.

- + Redis|int|false zCount(string $key, int|string $start, int|string $end)

@@ -21860,7 +21860,7 @@ will send whichever one is last in the options array.

- + Redis|float|false zIncrBy(string $key, float $value, mixed $member)

@@ -21935,7 +21935,7 @@ will send whichever one is last in the options array.

- + Redis|int|false zLexCount(string $key, string $min, string $max)

@@ -22009,7 +22009,7 @@ $redis->zLexCount('captains', '[A', '[S');

- + Redis|array|false zMscore(string $key, mixed $member, mixed ...$other_members)

@@ -22084,7 +22084,7 @@ $redis->zMScore('zs', 'one', 'not-a-member');

- + Redis|array|false zPopMax(string $key, int|null $count = null)

@@ -22154,7 +22154,7 @@ $redis->zPopMax('zs', 2);.

- + Redis|array|false zPopMin(string $key, int|null $count = null)

@@ -22224,7 +22224,7 @@ $redis->zPopMin('zs', 2);

- + Redis|array|false zRange(string $key, string|int $start, string|int $end, array|bool|null $options = null)

@@ -22315,7 +22315,7 @@ controls just the 'WITHSCORES' option.

- + Redis|array|false zRangeByLex(string $key, string $min, string $max, int $offset = -1, int $count = -1)

@@ -22401,7 +22401,7 @@ $redis->zRangeByLex('captains', '[A', '[S', 2,

- + Redis|array|false zRangeByScore(string $key, string $start, string $end, array $options = [])

@@ -22484,7 +22484,7 @@ $redis->zRangeByLex('captains', '[A', '[S', 2,

- + Redis|int|false zrangestore(string $dstkey, string $srckey, string $start, string $end, array|bool|null $options = null)

@@ -22573,7 +22573,7 @@ it will store them in a destination key provided by the user

- + Redis|string|array zRandMember(string $key, array|null $options = null)

@@ -22643,7 +22643,7 @@ OPTION TYPE MEANING

- + Redis|int|false zRank(string $key, mixed $member)

@@ -22713,7 +22713,7 @@ OPTION TYPE MEANING

- + Redis|int|false zRem(mixed $key, mixed $member, mixed ...$other_members)

@@ -22785,7 +22785,7 @@ OPTION TYPE MEANING

- + Redis|int|false zRemRangeByLex(string $key, string $min, string $max)

@@ -22866,7 +22866,7 @@ OPTION TYPE MEANING

- + Redis|int|false zRemRangeByRank(string $key, int $start, int $end)

@@ -22938,7 +22938,7 @@ OPTION TYPE MEANING

- + Redis|int|false zRemRangeByScore(string $key, string $start, string $end)

@@ -23011,7 +23011,7 @@ $redis->zRemRangeByScore('zs', 2, 4);

- + Redis|array|false zRevRange(string $key, int $start, int $end, mixed $scores = null)

@@ -23099,7 +23099,7 @@ on failure.

- + Redis|array|false zRevRangeByLex(string $key, string $max, string $min, int $offset = -1, int $count = -1)

@@ -23190,7 +23190,7 @@ on failure.

- + Redis|array|false zRevRangeByScore(string $key, string $max, string $min, array|bool $options = [])

@@ -23281,7 +23281,7 @@ $redis->zRevRangeByScore('oldest-people', '117.5', '

- + Redis|int|false zRevRank(string $key, mixed $member)

@@ -23352,7 +23352,7 @@ $redis->zrevrank('ds9-characters', 'Garak');

- + Redis|float|false zScore(string $key, mixed $member)

@@ -23420,7 +23420,7 @@ $redis->zScore('telescopes', 'LBT');

- + Redis|array|false zdiff(array $keys, array|null $options = null)

@@ -23493,7 +23493,7 @@ $redis->zDiff(['primes', 'evens', 'mod3']);

- + Redis|int|false zdiffstore(string $dst, array $keys)

@@ -23568,7 +23568,7 @@ Redis::zdiff

- + Redis|array|false zinter(array $keys, array|null $weights = null, array|null $options = null)

@@ -23647,7 +23647,7 @@ $redis->zInter(['TNG', 'DS9'], NULL, ['withscores�

- + Redis|int|false zintercard(array $keys, int $limit = -1)

@@ -23733,7 +23733,7 @@ $redis->zInterCard(['zs1', 'zs2']);

- + Redis|int|false zinterstore(string $dst, array $keys, array|null $weights = null, string|null $aggregate = null)

@@ -23824,7 +23824,7 @@ $redis->zInterStore('fruit-max', ['zs1', 'zs2',

- + Redis|array|false zscan(string $key, null|int|string $iterator, string|null $pattern = null, int $count = 0)

@@ -23924,7 +23924,7 @@ while ($members = $redis->zscan('leaders', $it)) {

- + Redis|array|false zunion(array $keys, array|null $weights = null, array|null $options = null)

@@ -24003,7 +24003,7 @@ $redis->zUnion(['store1', 'store3'], [2, .5], ['with

- + Redis|int|false zunionstore(string $dst, array $keys, array|null $weights = null, string|null $aggregate = null)

@@ -24092,7 +24092,7 @@ $redis->zUnionStore('dst', ['zs1', 'zs2', '

- + Redis|string|false digest(string $key)

diff --git a/docs/RedisArray.html b/docs/RedisArray.html index 9a54d7eb..b21af61d 100644 --- a/docs/RedisArray.html +++ b/docs/RedisArray.html @@ -229,7 +229,7 @@ + title="PhpRedis API (develop)" /> @@ -292,7 +292,7 @@

class - RedisArray (View source) + RedisArray (View source)

@@ -3384,7 +3384,7 @@

- + mixed __call(string $function_name, array $arguments)

@@ -3433,7 +3433,7 @@

- + __construct(string|array $name_or_hosts, array|null $options = null)

@@ -3471,7 +3471,7 @@

- + bool|array _continuum()

@@ -3505,7 +3505,7 @@

- + bool|callable _distributor()

@@ -3539,7 +3539,7 @@

- + bool|callable _function()

@@ -3573,7 +3573,7 @@

- + bool|array _hosts()

@@ -3607,7 +3607,7 @@

- + bool|null|Redis _instance(string $host)

@@ -3651,7 +3651,7 @@

- + bool|null _rehash(callable|null $fn = null)

@@ -3695,7 +3695,7 @@

- + bool|string|null _target(string $key)

@@ -3739,7 +3739,7 @@

- + array bgsave()

@@ -3773,7 +3773,7 @@

- + bool|int del(string|array $key, string ...$otherkeys)

@@ -3822,7 +3822,7 @@

- + bool|null discard()

@@ -3856,7 +3856,7 @@

- + bool|null|array exec()

@@ -3890,7 +3890,7 @@

- + bool|array flushall()

@@ -3924,7 +3924,7 @@

- + bool|array flushdb()

@@ -3958,7 +3958,7 @@

- + bool|array getOption(int $opt)

@@ -4002,7 +4002,7 @@

- + bool|array hscan(string $key, null|int|string $iterator, string|null $pattern = null, int $count = 0)

@@ -4061,7 +4061,7 @@

- + bool|array info()

@@ -4095,7 +4095,7 @@

- + bool|array keys(string $pattern)

@@ -4139,7 +4139,7 @@

- + bool|array mget(array $keys)

@@ -4183,7 +4183,7 @@

- + bool mset(array $pairs)

@@ -4227,7 +4227,7 @@

- + bool|RedisArray multi(string $host, int|null $mode = null)

@@ -4276,7 +4276,7 @@

- + bool|array ping()

@@ -4310,7 +4310,7 @@

- + bool|array save()

@@ -4344,7 +4344,7 @@

- + bool|array scan(null|int|string $iterator, string $node, string|null $pattern = null, int $count = 0)

@@ -4403,7 +4403,7 @@

- + bool|array select(int $index)

@@ -4447,7 +4447,7 @@

- + bool|array setOption(int $opt, string $value)

@@ -4496,7 +4496,7 @@

- + bool|array sscan(string $key, null|int|string $iterator, string|null $pattern = null, int $count = 0)

@@ -4555,7 +4555,7 @@
@@ -4604,7 +4604,7 @@

- + bool|null unwatch()

@@ -4638,7 +4638,7 @@

- + bool|array zscan(string $key, null|int|string $iterator, string|null $pattern = null, int $count = 0)

@@ -4697,7 +4697,7 @@

- + mixed acl(string $subcmd, string $args)

@@ -4746,7 +4746,7 @@

- + RedisArray|int|false append(string $key, mixed $value)

@@ -4795,7 +4795,7 @@

- + RedisArray|bool auth(SensitiveParameter] $ixed $credentials)

@@ -4839,7 +4839,7 @@

- + RedisArray|bool bgrewriteaof()

@@ -4873,7 +4873,7 @@

- + RedisArray|array|false waitaof(int $numlocal, int $numreplicas, int $timeout)

@@ -4927,7 +4927,7 @@

- + RedisArray|int|false bitcount(string $key, int $start, int $end = -1, bool $bybit = false)

@@ -4986,7 +4986,7 @@

- + RedisArray|int|false bitop(string $operation, string $deskey, string $srckey, string $other_keys)

@@ -5045,7 +5045,7 @@

- + RedisArray|int|false bitpos(string $key, bool $bit, int $start, int $end = -1, bool $bybit = false)

@@ -5109,7 +5109,7 @@

- + RedisArray|array|null|false blPop(string|array $key_or_keys, string|float|int $timeout_or_key, mixed $extra_args)

@@ -5163,7 +5163,7 @@

- + RedisArray|array|null|false brPop(string|array $key_or_keys, string|float|int $timeout_or_key, mixed $extra_args)

@@ -5217,7 +5217,7 @@

- + RedisArray|string|false brpoplpush(string $src, string $dst, int|float $timeout)

@@ -5271,7 +5271,7 @@

- + RedisArray|array|false bzPopMax(string|array $key, string|int $timeout_or_key, mixed $extra_args)

@@ -5325,7 +5325,7 @@

- + RedisArray|array|false bzPopMin(string|array $key, string|int $timeout_or_key, mixed $extra_args)

@@ -5379,7 +5379,7 @@

- + RedisArray|array|null|false bzmpop(float $timeout, array $keys, string $from, int $count = 1)

@@ -5438,7 +5438,7 @@

- + RedisArray|array|null|false zmpop(array $keys, string $from, int $count = 1)

@@ -5492,7 +5492,7 @@

- + RedisArray|array|null|false blmpop(float $timeout, array $keys, string $from, int $count = 1)

@@ -5551,7 +5551,7 @@

- + RedisArray|array|null|false lmpop(array $keys, string $from, int $count = 1)

@@ -5605,7 +5605,7 @@

- + bool clearLastError()

@@ -5639,7 +5639,7 @@

- + mixed client(string $opt, mixed $args)

@@ -5688,7 +5688,7 @@

- + bool close()

@@ -5722,7 +5722,7 @@

- + mixed command(?string $opt = null, mixed $args)

@@ -5771,7 +5771,7 @@

- + mixed config(string $operation, array|string|null $key_or_settings = null, ?string $value = null)

@@ -5825,7 +5825,7 @@

- + RedisArray|bool copy(string $src, string $dst, ?array $options = null)

@@ -5879,7 +5879,7 @@

- + RedisArray|int|false dbSize()

@@ -5913,7 +5913,7 @@

- + RedisArray|string debug(string $key)

@@ -5957,7 +5957,7 @@

- + RedisArray|int|false decr(string $key, int $by = 1)

@@ -6006,7 +6006,7 @@

- + RedisArray|int|false decrBy(string $key, int $value)

@@ -6055,7 +6055,7 @@

- + RedisArray|int|false delifeq(string $key, mixed $value)

@@ -6104,7 +6104,7 @@

- + RedisArray|int|false delete(array|string $key, string $other_keys)

@@ -6153,7 +6153,7 @@

- + RedisArray|string|false dump(string $key)

@@ -6197,7 +6197,7 @@

- + RedisArray|string|false echo(string $str)

@@ -6241,7 +6241,7 @@

- + mixed eval(string $script, array $args = [], int $num_keys)

@@ -6295,7 +6295,7 @@

- + mixed eval_ro(string $script_sha, array $args = [], int $num_keys)

@@ -6349,7 +6349,7 @@

- + mixed evalsha(string $sha1, array $args = [], int $num_keys)

@@ -6403,7 +6403,7 @@

- + mixed evalsha_ro(string $sha1, array $args = [], int $num_keys)

@@ -6457,7 +6457,7 @@

- + RedisArray|int|bool exists(mixed $key, mixed $other_keys)

@@ -6506,7 +6506,7 @@

- + RedisArray|bool expire(string $key, int $timeout, ?string $mode = null)

@@ -6560,7 +6560,7 @@

- + RedisArray|bool expireAt(string $key, int $timestamp, ?string $mode = null)

@@ -6614,7 +6614,7 @@

- + RedisArray|bool failover(?array $to = null, bool $abort = false, int $timeout)

@@ -6668,7 +6668,7 @@

- + RedisArray|int|false expiretime(string $key)

@@ -6712,7 +6712,7 @@

- + RedisArray|int|false pexpiretime(string $key)

@@ -6756,7 +6756,7 @@

- + mixed fcall(string $fn, array $keys = [], array $args = [])

@@ -6810,7 +6810,7 @@

- + mixed fcall_ro(string $fn, array $keys = [], array $args = [])

@@ -6864,7 +6864,7 @@

- + RedisArray|bool|string|array function(string $operation, mixed $args)

@@ -6913,7 +6913,7 @@

- + RedisArray|int|false geoadd(string $key, float $lng, float $lat, string $member, mixed $other_triples_and_options)

@@ -6977,7 +6977,7 @@

- + RedisArray|float|false geodist(string $key, string $src, string $dst, ?string $unit = null)

@@ -7036,7 +7036,7 @@

- + RedisArray|array|false geohash(string $key, string $member, string $other_members)

@@ -7090,7 +7090,7 @@

- + RedisArray|array|false geopos(string $key, string $member, string $other_members)

@@ -7144,7 +7144,7 @@

- + mixed georadius(string $key, float $lng, float $lat, float $radius, string $unit, array $options = [])

@@ -7213,7 +7213,7 @@

- + mixed georadius_ro(string $key, float $lng, float $lat, float $radius, string $unit, array $options = [])

@@ -7282,7 +7282,7 @@

- + mixed georadiusbymember(string $key, string $member, float $radius, string $unit, array $options = [])

@@ -7346,7 +7346,7 @@

- + mixed georadiusbymember_ro(string $key, string $member, float $radius, string $unit, array $options = [])

@@ -7410,7 +7410,7 @@

- + array geosearch(string $key, array|string $position, array|int|float $shape, string $unit, array $options = [])

@@ -7474,7 +7474,7 @@

- + RedisArray|array|int|false geosearchstore(string $dst, string $src, array|string $position, array|int|float $shape, string $unit, array $options = [])

@@ -7543,7 +7543,7 @@

- + mixed get(string $key)

@@ -7587,7 +7587,7 @@

- + RedisArray|array|false getWithMeta(string $key)

@@ -7631,7 +7631,7 @@

- + mixed getAuth()

@@ -7665,7 +7665,7 @@

- + RedisArray|int|false getBit(string $key, int $idx)

@@ -7714,7 +7714,7 @@

- + RedisArray|string|bool getEx(string $key, array $options = [])

@@ -7763,7 +7763,7 @@

- + int getDBNum()

@@ -7797,7 +7797,7 @@

- + RedisArray|string|bool getDel(string $key)

@@ -7841,7 +7841,7 @@

- + string getHost()

@@ -7875,7 +7875,7 @@

- + string|null getLastError()

@@ -7909,7 +7909,7 @@

- + int getMode()

@@ -7943,7 +7943,7 @@

- + string|null getPersistentID()

@@ -7977,7 +7977,7 @@

- + int getPort()

@@ -8011,7 +8011,7 @@

- + string|false serverName()

@@ -8045,7 +8045,7 @@

- + string|false serverVersion()

@@ -8079,7 +8079,7 @@

- + RedisArray|string|false getRange(string $key, int $start, int $end)

@@ -8133,7 +8133,7 @@

- + RedisArray|string|array|int|false lcs(string $key1, string $key2, ?array $options = null)

@@ -8187,7 +8187,7 @@

- + float getReadTimeout()

@@ -8221,7 +8221,7 @@

- + RedisArray|string|false getset(string $key, mixed $value)

@@ -8270,7 +8270,7 @@

- + float|false getTimeout()

@@ -8304,7 +8304,7 @@

- + array getTransferredBytes()

@@ -8338,7 +8338,7 @@

- + void clearTransferredBytes()

@@ -8372,7 +8372,7 @@

- + RedisArray|int|false hDel(string $key, string $field, string $other_fields)

@@ -8426,7 +8426,7 @@

- + RedisArray|bool hExists(string $key, string $field)

@@ -8475,7 +8475,7 @@

- + mixed hGet(string $key, string $member)

@@ -8524,7 +8524,7 @@

- + RedisArray|array|false hGetAll(string $key)

@@ -8568,7 +8568,7 @@

- + mixed hGetWithMeta(string $key, string $member)

@@ -8617,7 +8617,7 @@

- + RedisArray|int|false hIncrBy(string $key, string $field, int $value)

@@ -8671,7 +8671,7 @@

- + RedisArray|float|false hIncrByFloat(string $key, string $field, float $value)

@@ -8725,7 +8725,7 @@

- + RedisArray|array|false hKeys(string $key)

@@ -8769,7 +8769,7 @@

- + RedisArray|int|false hLen(string $key)

@@ -8813,7 +8813,7 @@

- + RedisArray|array|false hMget(string $key, array $fields)

@@ -8862,7 +8862,7 @@

- + RedisArray|array|false hgetex(string $key, array $fields, string|array|null $expiry = null)

@@ -8916,7 +8916,7 @@

- + RedisArray|int|false hsetex(string $key, array $fields, ?array $expiry = null)

@@ -8970,7 +8970,7 @@

- + RedisArray|array|false hgetdel(string $key, array $fields)

@@ -9019,7 +9019,7 @@

- + RedisArray|bool hMset(string $key, array $fieldvals)

@@ -9068,7 +9068,7 @@

- + RedisArray|string|array|false hRandField(string $key, ?array $options = null)

@@ -9117,7 +9117,7 @@

- + RedisArray|int|false hSet(string $key, mixed $fields_and_vals)

@@ -9166,7 +9166,7 @@

- + RedisArray|bool hSetNx(string $key, string $field, mixed $value)

@@ -9220,7 +9220,7 @@

- + RedisArray|int|false hStrLen(string $key, string $field)

@@ -9269,7 +9269,7 @@

- + RedisArray|array|false hVals(string $key)

@@ -9313,7 +9313,7 @@

- + RedisArray|array|false httl(string $key, array $fields)

@@ -9362,7 +9362,7 @@

- + RedisArray|array|false hpttl(string $key, array $fields)

@@ -9411,7 +9411,7 @@

- + RedisArray|array|false hexpiretime(string $key, array $fields)

@@ -9460,7 +9460,7 @@

- + RedisArray|array|false hpexpiretime(string $key, array $fields)

@@ -9509,7 +9509,7 @@

- + RedisArray|array|false hpersist(string $key, array $fields)

@@ -9558,7 +9558,7 @@

- + RedisArray|int|false expiremember(string $key, string $field, int $ttl, ?string $unit = null)

@@ -9617,7 +9617,7 @@

- + RedisArray|int|false expirememberat(string $key, string $field, int $timestamp)

@@ -9671,7 +9671,7 @@

- + RedisArray|int|false incr(string $key, int $by = 1)

@@ -9720,7 +9720,7 @@

- + RedisArray|int|false incrBy(string $key, int $value)

@@ -9769,7 +9769,7 @@

- + RedisArray|float|false incrByFloat(string $key, float $value)

@@ -9818,7 +9818,7 @@

- + bool isConnected()

@@ -9852,7 +9852,7 @@

- + void lInsert(string $key, string $pos, mixed $pivot, mixed $value)

@@ -9911,7 +9911,7 @@

- + RedisArray|int|false lLen(string $key)

@@ -9955,7 +9955,7 @@

- + RedisArray|string|false lMove(string $src, string $dst, string $wherefrom, string $whereto)

@@ -10014,7 +10014,7 @@

- + RedisArray|string|false blmove(string $src, string $dst, string $wherefrom, string $whereto, float $timeout)

@@ -10078,7 +10078,7 @@

- + RedisArray|bool|string|array lPop(string $key, int $count)

@@ -10127,7 +10127,7 @@

- + RedisArray|null|bool|int|array lPos(string $key, mixed $value, ?array $options = null)

@@ -10181,7 +10181,7 @@

- + RedisArray|int|false lPush(string $key, mixed $elements)

@@ -10230,7 +10230,7 @@

- + RedisArray|int|false rPush(string $key, mixed $elements)

@@ -10279,7 +10279,7 @@

- + RedisArray|int|false lPushx(string $key, mixed $value)

@@ -10328,7 +10328,7 @@

- + RedisArray|int|false rPushx(string $key, mixed $value)

@@ -10377,7 +10377,7 @@

- + RedisArray|bool lSet(string $key, int $index, mixed $value)

@@ -10431,7 +10431,7 @@

- + int lastSave()

@@ -10465,7 +10465,7 @@

- + mixed lindex(string $key, int $index)

@@ -10514,7 +10514,7 @@

- + RedisArray|array|false lrange(string $key, int $start, int $end)

@@ -10568,7 +10568,7 @@

- + RedisArray|int|false lrem(string $key, mixed $value, int $count)

@@ -10622,7 +10622,7 @@

- + RedisArray|bool ltrim(string $key, int $start, int $end)

@@ -10676,7 +10676,7 @@

- + RedisArray|bool move(string $key, int $index)

@@ -10725,7 +10725,7 @@

- + RedisArray|bool msetnx(array $key_values)

@@ -10769,7 +10769,7 @@

- + RedisArray|int|string|false object(string $subcommand, string $key)

@@ -10818,7 +10818,7 @@

- + bool open(string $host, int $port = 6379, float $timeout, ?string $persistent_id = null, int $retry_interval, float $read_timeout, ?array $context = null)

@@ -10892,7 +10892,7 @@

- + bool pconnect(string $host, int $port = 6379, float $timeout, ?string $persistent_id = null, int $retry_interval, float $read_timeout, ?array $context = null)

@@ -10966,7 +10966,7 @@

- + RedisArray|bool persist(string $key)

@@ -11010,7 +11010,7 @@

- + bool pexpire(string $key, int $timeout, ?string $mode = null)

@@ -11064,7 +11064,7 @@

- + RedisArray|bool pexpireAt(string $key, int $timestamp, ?string $mode = null)

@@ -11118,7 +11118,7 @@

- + RedisArray|int pfadd(string $key, array $elements)

@@ -11167,7 +11167,7 @@

- + RedisArray|int|false pfcount(array|string $key_or_keys)

@@ -11211,7 +11211,7 @@

- + RedisArray|bool pfmerge(string $dst, array $srckeys)

@@ -11260,7 +11260,7 @@

- + RedisArray pipeline()

@@ -11294,7 +11294,7 @@

- + bool popen(string $host, int $port = 6379, float $timeout, ?string $persistent_id = null, int $retry_interval, float $read_timeout, ?array $context = null)

@@ -11368,7 +11368,7 @@

- + RedisArray|bool psetex(string $key, int $expire, mixed $value)

@@ -11422,7 +11422,7 @@

- + bool psubscribe(array $patterns, callable $cb)

@@ -11471,7 +11471,7 @@

- + RedisArray|int|false pttl(string $key)

@@ -11515,7 +11515,7 @@

- + RedisArray|int|false publish(string $channel, string $message)

@@ -11564,7 +11564,7 @@

- + mixed pubsub(string $command, mixed $arg = null)

@@ -11613,7 +11613,7 @@

- + RedisArray|array|bool punsubscribe(array $patterns)

@@ -11657,7 +11657,7 @@

- + RedisArray|array|string|bool rPop(string $key, int $count)

@@ -11706,7 +11706,7 @@

- + RedisArray|string|false randomKey()

@@ -11740,7 +11740,7 @@

- + mixed rawcommand(string $command, mixed $args)

@@ -11789,7 +11789,7 @@

- + RedisArray|bool rename(string $old_name, string $new_name)

@@ -11838,7 +11838,7 @@

- + RedisArray|bool renameNx(string $key_src, string $key_dst)

@@ -11887,7 +11887,7 @@

- + RedisArray|bool reset()

@@ -11921,7 +11921,7 @@

- + RedisArray|bool restore(string $key, int $ttl, string $value, ?array $options = null)

@@ -11980,7 +11980,7 @@

- + mixed role()

@@ -12014,7 +12014,7 @@

- + RedisArray|string|false rpoplpush(string $srckey, string $dstkey)

@@ -12063,7 +12063,7 @@

- + RedisArray|int|false sAdd(string $key, mixed $value, mixed $other_values)

@@ -12117,7 +12117,7 @@

- + int sAddArray(string $key, array $values)

@@ -12166,7 +12166,7 @@

- + RedisArray|array|false sDiff(string $key, string $other_keys)

@@ -12215,7 +12215,7 @@

- + RedisArray|int|false sDiffStore(string $dst, string $key, string $other_keys)

@@ -12269,7 +12269,7 @@

- + RedisArray|array|false sInter(array|string $key, string $other_keys)

@@ -12318,7 +12318,7 @@

- + RedisArray|int|false sintercard(array $keys, int $limit = -1)

@@ -12367,7 +12367,7 @@

- + RedisArray|int|false sInterStore(array|string $key, string $other_keys)

@@ -12416,7 +12416,7 @@

- + RedisArray|array|false sMembers(string $key)

@@ -12460,7 +12460,7 @@

- + RedisArray|array|false sMisMember(string $key, string $member, string $other_members)

@@ -12514,7 +12514,7 @@

- + RedisArray|bool sMove(string $src, string $dst, mixed $value)

@@ -12568,7 +12568,7 @@

- + RedisArray|string|array|false sPop(string $key, int $count)

@@ -12617,7 +12617,7 @@

- + mixed sRandMember(string $key, int $count)

@@ -12666,7 +12666,7 @@

- + RedisArray|array|false sUnion(string $key, string $other_keys)

@@ -12715,7 +12715,7 @@

- + RedisArray|int|false sUnionStore(string $dst, string $key, string $other_keys)

@@ -12769,7 +12769,7 @@

- + RedisArray|int|false scard(string $key)

@@ -12813,7 +12813,7 @@

- + mixed script(string $command, mixed $args)

@@ -12862,7 +12862,7 @@

- + RedisArray|string|bool set(string $key, mixed $value, mixed $options = null)

@@ -12916,7 +12916,7 @@

- + RedisArray|int|false setBit(string $key, int $idx, bool $value)

@@ -12970,7 +12970,7 @@

- + RedisArray|int|false setRange(string $key, int $index, string $value)

@@ -13024,7 +13024,7 @@

- + void setex(string $key, int $expire, mixed $value)

@@ -13078,7 +13078,7 @@

- + RedisArray|bool setnx(string $key, mixed $value)

@@ -13127,7 +13127,7 @@

- + RedisArray|bool sismember(string $key, mixed $value)

@@ -13176,7 +13176,7 @@

- + RedisArray|bool slaveof(?string $host = null, int $port = 6379)

@@ -13225,7 +13225,7 @@

- + RedisArray|bool replicaof(?string $host = null, int $port = 6379)

@@ -13274,7 +13274,7 @@

- + RedisArray|int|false touch(array|string $key_or_array, string $more_keys)

@@ -13323,7 +13323,7 @@

- + mixed slowlog(string $operation, int $length)

@@ -13372,7 +13372,7 @@

- + mixed sort(string $key, ?array $options = null)

@@ -13421,7 +13421,7 @@

- + mixed sort_ro(string $key, ?array $options = null)

@@ -13470,7 +13470,7 @@

- + array sortAsc(string $key, ?string $pattern = null, mixed $get = null, int $offset = -1, int $count = -1, ?string $store = null)

@@ -13539,7 +13539,7 @@

- + array sortAscAlpha(string $key, ?string $pattern = null, mixed $get = null, int $offset = -1, int $count = -1, ?string $store = null)

@@ -13608,7 +13608,7 @@

- + array sortDesc(string $key, ?string $pattern = null, mixed $get = null, int $offset = -1, int $count = -1, ?string $store = null)

@@ -13677,7 +13677,7 @@

- + array sortDescAlpha(string $key, ?string $pattern = null, mixed $get = null, int $offset = -1, int $count = -1, ?string $store = null)

@@ -13746,7 +13746,7 @@

- + RedisArray|int|false srem(string $key, mixed $value, mixed $other_values)

@@ -13800,7 +13800,7 @@

- + bool ssubscribe(array $channels, callable $cb)

@@ -13849,7 +13849,7 @@

- + RedisArray|int|false strlen(string $key)

@@ -13893,7 +13893,7 @@

- + bool subscribe(array $channels, callable $cb)

@@ -13942,7 +13942,7 @@

- + RedisArray|array|bool sunsubscribe(array $channels)

@@ -13986,7 +13986,7 @@

- + RedisArray|bool swapdb(int $src, int $dst)

@@ -14035,7 +14035,7 @@

- + RedisArray|array time()

@@ -14069,7 +14069,7 @@

- + RedisArray|int|false ttl(string $key)

@@ -14113,7 +14113,7 @@

- + RedisArray|int|false type(string $key)

@@ -14157,7 +14157,7 @@

- + RedisArray|array|bool unsubscribe(array $channels)

@@ -14201,7 +14201,7 @@

- + RedisArray|bool watch(array|string $key, string $other_keys)

@@ -14250,7 +14250,7 @@

- + int|false wait(int $numreplicas, int $timeout)

@@ -14299,7 +14299,7 @@

- + int|false xack(string $key, string $group, array $ids)

@@ -14353,7 +14353,7 @@

- + RedisArray|string|false xadd(string $key, string $id, array $values, int $maxlen, bool $approx = false, bool $nomkstream = false)

@@ -14422,7 +14422,7 @@

- + RedisArray|bool|array xautoclaim(string $key, string $group, string $consumer, int $min_idle, string $start, int $count = -1, bool $justid = false)

@@ -14496,7 +14496,7 @@

- + RedisArray|array|bool xclaim(string $key, string $group, string $consumer, int $min_idle, array $ids, array $options)

@@ -14565,7 +14565,7 @@

- + RedisArray|int|false xdel(string $key, array $ids)

@@ -14614,7 +14614,7 @@

- + mixed xinfo(string $operation, ?string $arg1 = null, ?string $arg2 = null, int $count = -1)

@@ -14673,7 +14673,7 @@

- + RedisArray|int|false xlen(string $key)

@@ -14717,7 +14717,7 @@

- + RedisArray|array|false xpending(string $key, string $group, ?string $start = null, ?string $end = null, int $count = -1, ?string $consumer = null)

@@ -14786,7 +14786,7 @@

- + RedisArray|array|bool xrange(string $key, string $start, string $end, int $count = -1)

@@ -14845,7 +14845,7 @@

- + RedisArray|array|bool xread(array $streams, int $count = -1, int $block = -1)

@@ -14899,7 +14899,7 @@

- + RedisArray|array|bool xreadgroup(string $group, string $consumer, array $streams, int $count = 1, int $block = 1)

@@ -14963,7 +14963,7 @@

- + RedisArray|array|bool xrevrange(string $key, string $end, string $start, int $count = -1)

@@ -15022,7 +15022,7 @@

- + RedisArray|int|false vadd(string $key, array $values, mixed $element, array|null $options = null)

@@ -15081,7 +15081,7 @@

- + RedisArray|array|false vsim(string $key, mixed $member, array|null $options = null)

@@ -15135,7 +15135,7 @@

- + RedisArray|int|false vcard(string $key)

@@ -15179,7 +15179,7 @@

- + RedisArray|int|false vdim(string $key)

@@ -15223,7 +15223,7 @@

- + RedisArray|array|false vinfo(string $key)

@@ -15267,7 +15267,7 @@

- + RedisArray|bool vismember(string $key, mixed $member)

@@ -15316,7 +15316,7 @@

- + RedisArray|array|false vemb(string $key, mixed $member, bool $raw = false)

@@ -15370,7 +15370,7 @@

- + RedisArray|array|string|false vrandmember(string $key, int $count)

@@ -15419,7 +15419,7 @@

- + RedisArray|array|false vrange(string $key, string $min, string $max, int $count = -1)

@@ -15478,7 +15478,7 @@

- + RedisArray|int|false vrem(string $key, mixed $member)

@@ -15527,7 +15527,7 @@

- + RedisArray|int|false vsetattr(string $key, mixed $member, array|string $attributes)

@@ -15581,7 +15581,7 @@

- + RedisArray|array|string|false vgetattr(string $key, mixed $member, bool $decode = true)

@@ -15635,7 +15635,7 @@
@@ -15689,7 +15689,7 @@

- + RedisArray|int|false xtrim(string $key, string $threshold, bool $approx = false, bool $minid = false, int $limit = -1)

@@ -15753,7 +15753,7 @@

- + RedisArray|int|float|false zAdd(string $key, array|float $score_or_options, mixed $more_scores_and_mems)

@@ -15807,7 +15807,7 @@

- + RedisArray|int|false zCard(string $key)

@@ -15851,7 +15851,7 @@

- + RedisArray|int|false zCount(string $key, int|string $start, int|string $end)

@@ -15905,7 +15905,7 @@

- + RedisArray|float|false zIncrBy(string $key, float $value, mixed $member)

@@ -15959,7 +15959,7 @@

- + RedisArray|int|false zLexCount(string $key, string $min, string $max)

@@ -16013,7 +16013,7 @@

- + RedisArray|array|false zMscore(string $key, mixed $member, mixed $other_members)

@@ -16067,7 +16067,7 @@

- + RedisArray|array|false zPopMax(string $key, ?int $count = null)

@@ -16116,7 +16116,7 @@

- + RedisArray|array|false zPopMin(string $key, ?int $count = null)

@@ -16165,7 +16165,7 @@

- + RedisArray|array|false zRange(string $key, string|int $start, string|int $end, array|bool|null $options = null)

@@ -16224,7 +16224,7 @@

- + RedisArray|array|false zRangeByLex(string $key, string $min, string $max, int $offset = -1, int $count = -1)

@@ -16288,7 +16288,7 @@

- + RedisArray|array|false zRangeByScore(string $key, string $start, string $end, array $options = [])

@@ -16347,7 +16347,7 @@

- + RedisArray|string|array zRandMember(string $key, ?array $options = null)

@@ -16396,7 +16396,7 @@

- + RedisArray|int|false zRank(string $key, mixed $member)

@@ -16445,7 +16445,7 @@

- + RedisArray|int|false zRem(mixed $key, mixed $member, mixed $other_members)

@@ -16499,7 +16499,7 @@

- + RedisArray|int|false zRemRangeByLex(string $key, string $min, string $max)

@@ -16553,7 +16553,7 @@

- + RedisArray|int|false zRemRangeByRank(string $key, int $start, int $end)

@@ -16607,7 +16607,7 @@

- + RedisArray|int|false zRemRangeByScore(string $key, string $start, string $end)

@@ -16661,7 +16661,7 @@

- + RedisArray|array|false zRevRange(string $key, int $start, int $end, mixed $scores = null)

@@ -16720,7 +16720,7 @@

- + RedisArray|array|false zRevRangeByLex(string $key, string $max, string $min, int $offset = -1, int $count = -1)

@@ -16784,7 +16784,7 @@

- + RedisArray|array|false zRevRangeByScore(string $key, string $max, string $min, array|bool $options = [])

@@ -16843,7 +16843,7 @@

- + RedisArray|int|false zRevRank(string $key, mixed $member)

@@ -16892,7 +16892,7 @@

- + RedisArray|float|false zScore(string $key, mixed $member)

@@ -16941,7 +16941,7 @@

- + RedisArray|array|false zdiff(array $keys, ?array $options = null)

@@ -16990,7 +16990,7 @@

- + RedisArray|int|false zdiffstore(string $dst, array $keys)

@@ -17039,7 +17039,7 @@

- + RedisArray|array|false zinter(array $keys, ?array $weights = null, ?array $options = null)

@@ -17093,7 +17093,7 @@

- + RedisArray|int|false zintercard(array $keys, int $limit = -1)

@@ -17142,7 +17142,7 @@

- + RedisArray|int|false zinterstore(string $dst, array $keys, ?array $weights = null, ?string $aggregate = null)

@@ -17201,7 +17201,7 @@

- + RedisArray|array|false zunion(array $keys, ?array $weights = null, ?array $options = null)

@@ -17255,7 +17255,7 @@

- + RedisArray|int|false zunionstore(string $dst, array $keys, ?array $weights = null, ?string $aggregate = null)

diff --git a/docs/RedisCluster.html b/docs/RedisCluster.html index 50441ef0..5e8f5803 100644 --- a/docs/RedisCluster.html +++ b/docs/RedisCluster.html @@ -229,7 +229,7 @@ + title="PhpRedis API (develop)" /> @@ -292,7 +292,7 @@

class - RedisCluster (View source) + RedisCluster (View source)

@@ -3204,7 +3204,7 @@ to that section.

- + __construct(string|null $name, array|null $seeds = null, int|float $timeout = 0, int|float $read_timeout = 0, bool $persistent = false, mixed $auth = null, array|null $context = null)

@@ -3267,7 +3267,7 @@ to that section.

- + string _compress(string $value)

@@ -3323,7 +3323,7 @@ Redis::_compress

- + string _uncompress(string $value)

@@ -3379,7 +3379,7 @@ Redis::_uncompress

- + bool|string _serialize(mixed $value)

@@ -3435,7 +3435,7 @@ Redis::_serialize

- + mixed _unserialize(string $value)

@@ -3491,7 +3491,7 @@ Redis::_unserialize

- + string _pack(mixed $value)

@@ -3547,7 +3547,7 @@ Redis::_pack

- + string _digest(mixed $value)

@@ -3603,7 +3603,7 @@ Redis::_digest

- + mixed _unpack(string $value)

@@ -3659,7 +3659,7 @@ Redis::_unpack

- + bool|string _prefix(string $key)

@@ -3715,7 +3715,7 @@ Redis::_prefix

- + array _masters()

@@ -3749,7 +3749,7 @@ Redis::_prefix

- + string|null _redir()

@@ -3783,7 +3783,7 @@ Redis::_prefix

- + mixed acl(string|array $key_or_address, string $subcmd, string ...$args)

@@ -3848,7 +3848,7 @@ Redis::_prefix

- + RedisCluster|bool|int append(string $key, mixed $value)

@@ -3909,7 +3909,7 @@ Redis::append

- + RedisCluster|bool bgrewriteaof(string|array $key_or_address)

@@ -3964,7 +3964,7 @@ Redis::append

- + RedisCluster|int|false wait(string|array $key_or_address, int $numreplicas, int $timeout)

@@ -4029,7 +4029,7 @@ Redis::append

- + RedisCluster|array|false waitaof(string|array $key_or_address, int $numlocal, int $numreplicas, int $timeout)

@@ -4099,7 +4099,7 @@ Redis::append

- + RedisCluster|bool bgsave(string|array $key_or_address)

@@ -4154,7 +4154,7 @@ Redis::append

- + RedisCluster|bool|int bitcount(string $key, int $start = 0, int $end = -1, bool $bybit = false)

@@ -4224,7 +4224,7 @@ Redis::append

- + RedisCluster|bool|int bitop(string $operation, string $deskey, string $srckey, string ...$otherkeys)

@@ -4294,7 +4294,7 @@ Redis::append

- + RedisCluster|int|false bitpos(string $key, bool $bit, int $start = 0, int $end = -1, bool $bybit = false)

@@ -4369,7 +4369,7 @@ was 0 and end was 2, Redis would only search the first two bits.

- + RedisCluster|array|null|false blpop(string|array $key, string|float|int $timeout_or_key, mixed ...$extra_args)

@@ -4422,7 +4422,7 @@ was 0 and end was 2, Redis would only search the first two bits.

- + RedisCluster|array|null|false brpop(string|array $key, string|float|int $timeout_or_key, mixed ...$extra_args)

@@ -4475,7 +4475,7 @@ was 0 and end was 2, Redis would only search the first two bits.

- + mixed brpoplpush(string $srckey, string $deskey, int $timeout)

@@ -4528,7 +4528,7 @@ was 0 and end was 2, Redis would only search the first two bits.

- + RedisCluster|string|false lmove(string $src, string $dst, string $wherefrom, string $whereto)

@@ -4597,7 +4597,7 @@ was 0 and end was 2, Redis would only search the first two bits.

- + RedisCluster|string|false blmove(string $src, string $dst, string $wherefrom, string $whereto, float $timeout)

@@ -4671,7 +4671,7 @@ was 0 and end was 2, Redis would only search the first two bits.

- + array bzpopmax(string|array $key, string|int $timeout_or_key, mixed ...$extra_args)

@@ -4736,7 +4736,7 @@ was 0 and end was 2, Redis would only search the first two bits.

- + array bzpopmin(string|array $key, string|int $timeout_or_key, mixed ...$extra_args)

@@ -4801,7 +4801,7 @@ was 0 and end was 2, Redis would only search the first two bits.

- + RedisCluster|array|null|false bzmpop(float $timeout, array $keys, string $from, int $count = 1)

@@ -4871,7 +4871,7 @@ was 0 and end was 2, Redis would only search the first two bits.

- + RedisCluster|array|null|false zmpop(array $keys, string $from, int $count = 1)

@@ -4936,7 +4936,7 @@ was 0 and end was 2, Redis would only search the first two bits.

- + RedisCluster|array|null|false blmpop(float $timeout, array $keys, string $from, int $count = 1)

@@ -5007,7 +5007,7 @@ Redis::blmpop

- + RedisCluster|array|null|false lmpop(array $keys, string $from, int $count = 1)

@@ -5073,7 +5073,7 @@ Redis::lmpop

- + bool clearlasterror()

@@ -5118,7 +5118,7 @@ Redis::lmpop

- + array|string|bool client(string|array $key_or_address, string $subcommand, string|null $arg = null)

@@ -5183,7 +5183,7 @@ Redis::lmpop

- + bool close()

@@ -5228,7 +5228,7 @@ Redis::lmpop

- + mixed cluster(string|array $key_or_address, string $command, mixed ...$extra_args)

@@ -5293,7 +5293,7 @@ Redis::lmpop

- + mixed command(mixed ...$extra_args)

@@ -5348,7 +5348,7 @@ Redis::lmpop

- + mixed config(string|array $key_or_address, string $subcommand, mixed ...$extra_args)

@@ -5414,7 +5414,7 @@ Redis::config

- + RedisCluster|int dbsize(string|array $key_or_address)

@@ -5469,7 +5469,7 @@ Redis::config

- + RedisCluster|bool copy(string $src, string $dst, array|null $options = null)

@@ -5534,7 +5534,7 @@ Redis::config

- + RedisCluster|int|false decr(string $key, int $by = 1)

@@ -5595,7 +5595,7 @@ Redis::decr

- + RedisCluster|int|false decrby(string $key, int $value)

@@ -5655,7 +5655,7 @@ Redis::decr

- + float decrbyfloat(string $key, float $value)

@@ -5715,7 +5715,7 @@ Redis::decr

- + RedisCluster|int|false del(array|string $key, string ...$other_keys)

@@ -5776,7 +5776,7 @@ Redis::del

- + RedisCluster|int|false delex(string $key, array|null $options = null)

@@ -5824,7 +5824,7 @@ Redis::del

- + RedisCluster|int|false delifeq(string $key, mixed $value)

@@ -5873,7 +5873,7 @@ specific to Valkey >= 9.0

- + bool discard()

@@ -5918,7 +5918,7 @@ specific to Valkey >= 9.0

- + RedisCluster|string|false dump(string $key)

@@ -5973,7 +5973,7 @@ specific to Valkey >= 9.0

- + RedisCluster|string|false echo(string|array $key_or_address, string $msg)

@@ -6034,7 +6034,7 @@ Redis::echo

- + mixed eval(string $script, array $args = [], int $num_keys = 0)

@@ -6099,7 +6099,7 @@ Redis::echo

- + mixed eval_ro(string $script, array $args = [], int $num_keys = 0)

@@ -6164,7 +6164,7 @@ Redis::echo

- + mixed evalsha(string $script_sha, array $args = [], int $num_keys = 0)

@@ -6229,7 +6229,7 @@ Redis::echo

- + mixed evalsha_ro(string $script_sha, array $args = [], int $num_keys = 0)

@@ -6294,7 +6294,7 @@ Redis::echo

- + array|false exec()

@@ -6340,7 +6340,7 @@ Redis::exec

- + RedisCluster|int|bool exists(mixed $key, mixed ...$other_keys)

@@ -6400,7 +6400,7 @@ Redis::exec

- + RedisCluster|int|bool touch(mixed $key, mixed ...$other_keys)

@@ -6461,7 +6461,7 @@ Redis::touch

- + RedisCluster|bool expire(string $key, int $timeout, string|null $mode = null)

@@ -6526,7 +6526,7 @@ Redis::touch

- + RedisCluster|bool expireat(string $key, int $timestamp, string|null $mode = null)

@@ -6591,7 +6591,7 @@ Redis::touch

- + RedisCluster|int|false expiretime(string $key)

@@ -6647,7 +6647,7 @@ Redis::expiretime

- + RedisCluster|int|false pexpiretime(string $key)

@@ -6703,7 +6703,7 @@ Redis::pexpiretime

- + RedisCluster|bool flushall(string|array $key_or_address, bool $async = false)

@@ -6763,7 +6763,7 @@ Redis::pexpiretime

- + RedisCluster|bool flushdb(string|array $key_or_address, bool $async = false)

@@ -6823,7 +6823,7 @@ Redis::pexpiretime

- + RedisCluster|int|false geoadd(string $key, float $lng, float $lat, string $member, mixed ...$other_triples_and_options)

@@ -6898,7 +6898,7 @@ Redis::pexpiretime

- + RedisCluster|float|false geodist(string $key, string $src, string $dest, string|null $unit = null)

@@ -6968,7 +6968,7 @@ Redis::pexpiretime

- + RedisCluster|array|false geohash(string $key, string $member, string ...$other_members)

@@ -7033,7 +7033,7 @@ Redis::pexpiretime

- + RedisCluster|array|false geopos(string $key, string $member, string ...$other_members)

@@ -7098,7 +7098,7 @@ Redis::pexpiretime

- + mixed georadius(string $key, float $lng, float $lat, float $radius, string $unit, array $options = [])

@@ -7178,7 +7178,7 @@ Redis::pexpiretime

- + mixed georadius_ro(string $key, float $lng, float $lat, float $radius, string $unit, array $options = [])

@@ -7258,7 +7258,7 @@ Redis::pexpiretime

- + mixed georadiusbymember(string $key, string $member, float $radius, string $unit, array $options = [])

@@ -7333,7 +7333,7 @@ Redis::pexpiretime

- + mixed georadiusbymember_ro(string $key, string $member, float $radius, string $unit, array $options = [])

@@ -7408,7 +7408,7 @@ Redis::pexpiretime

- + RedisCluster|array geosearch(string $key, array|string $position, array|int|float $shape, string $unit, array $options = [])

@@ -7483,7 +7483,7 @@ Redis::pexpiretime

- + RedisCluster|array|int|false geosearchstore(string $dst, string $src, array|string $position, array|int|float $shape, string $unit, array $options = [])

@@ -7563,7 +7563,7 @@ Redis::pexpiretime

- + mixed get(string $key)

@@ -7618,7 +7618,7 @@ Redis::pexpiretime

- + mixed getdel(string $key)

@@ -7673,7 +7673,7 @@ Redis::pexpiretime

- + RedisCluster|array|false getWithMeta(string $key)

@@ -7728,7 +7728,7 @@ Redis::pexpiretime

- + RedisCluster|string|false getex(string $key, array $options = [])

@@ -7788,7 +7788,7 @@ Redis::pexpiretime

- + RedisCluster|int|false getbit(string $key, int $value)

@@ -7848,7 +7848,7 @@ Redis::pexpiretime

- + string|null getlasterror()

@@ -7893,7 +7893,7 @@ Redis::pexpiretime

- + int getmode()

@@ -7938,7 +7938,7 @@ Redis::pexpiretime

- + mixed getoption(int $option)

@@ -7993,7 +7993,7 @@ Redis::pexpiretime

- + RedisCluster|string|false getrange(string $key, int $start, int $end)

@@ -8058,7 +8058,7 @@ Redis::pexpiretime

- + RedisCluster|string|array|int|false lcs(string $key1, string $key2, array|null $options = null)

@@ -8123,7 +8123,7 @@ Redis::pexpiretime

- + RedisCluster|string|bool getset(string $key, mixed $value)

@@ -8183,7 +8183,7 @@ Redis::pexpiretime

- + array|false gettransferredbytes()

@@ -8228,7 +8228,7 @@ Redis::pexpiretime

- + void cleartransferredbytes()

@@ -8273,7 +8273,7 @@ Redis::pexpiretime

- + RedisCluster|int|false hdel(string $key, string $member, string ...$other_members)

@@ -8338,7 +8338,7 @@ Redis::pexpiretime

- + RedisCluster|bool hexists(string $key, string $member)

@@ -8398,7 +8398,7 @@ Redis::pexpiretime

- + mixed hget(string $key, string $member)

@@ -8458,7 +8458,7 @@ Redis::pexpiretime

- + RedisCluster|array|false hgetall(string $key)

@@ -8513,7 +8513,7 @@ Redis::pexpiretime

- + mixed hgetWithMeta(string $key, string $member)

@@ -8573,7 +8573,7 @@ Redis::pexpiretime

- + RedisCluster|int|false hincrby(string $key, string $member, int $value)

@@ -8638,7 +8638,7 @@ Redis::pexpiretime

- + RedisCluster|float|false hincrbyfloat(string $key, string $member, float $value)

@@ -8703,7 +8703,7 @@ Redis::pexpiretime

- + RedisCluster|array|false hkeys(string $key)

@@ -8758,7 +8758,7 @@ Redis::pexpiretime

- + RedisCluster|int|false hlen(string $key)

@@ -8813,7 +8813,7 @@ Redis::pexpiretime

- + RedisCluster|array|false hmget(string $key, array $keys)

@@ -8873,7 +8873,7 @@ Redis::pexpiretime

- + RedisCluster|array|false hgetex(string $key, array $fields, string|array|null $expiry = null)

@@ -8938,7 +8938,7 @@ Redis::pexpiretime

- + RedisCluster|int|false hsetex(string $key, array $fields, array|null $expiry = null)

@@ -9003,7 +9003,7 @@ Redis::pexpiretime

- + RedisCluster|array|false hgetdel(string $key, array $fields)

@@ -9063,7 +9063,7 @@ Redis::pexpiretime

- + RedisCluster|bool hmset(string $key, array $key_values)

@@ -9123,7 +9123,7 @@ Redis::pexpiretime

- + array|bool hscan(string $key, null|int|string $iterator, string|null $pattern = null, int $count = 0)

@@ -9193,7 +9193,7 @@ Redis::pexpiretime

- + RedisCluster|int|false expiremember(string $key, string $field, int $ttl, string|null $unit = null)

@@ -9263,7 +9263,7 @@ Redis::pexpiretime

- + RedisCluster|int|false expirememberat(string $key, string $field, int $timestamp)

@@ -9328,7 +9328,7 @@ Redis::pexpiretime

- + RedisCluster|string|array hrandfield(string $key, array|null $options = null)

@@ -9388,7 +9388,7 @@ Redis::pexpiretime

- + RedisCluster|int|false hset(string $key, string $member, mixed $value)

@@ -9453,7 +9453,7 @@ Redis::pexpiretime

- + RedisCluster|bool hsetnx(string $key, string $member, mixed $value)

@@ -9518,7 +9518,7 @@ Redis::pexpiretime

- + RedisCluster|int|false hstrlen(string $key, string $field)

@@ -9578,7 +9578,7 @@ Redis::pexpiretime

- + RedisCluster|array|false hexpire(string $key, int $ttl, array $fields, string|null $mode = NULL)

@@ -9648,7 +9648,7 @@ Redis::pexpiretime

- + RedisCluster|array|false hpexpire(string $key, int $ttl, array $fields, string|null $mode = NULL)

@@ -9718,7 +9718,7 @@ Redis::pexpiretime

- + RedisCluster|array|false hexpireat(string $key, int $time, array $fields, string|null $mode = NULL)

@@ -9788,7 +9788,7 @@ Redis::pexpiretime

- + RedisCluster|array|false hpexpireat(string $key, int $mstime, array $fields, string|null $mode = NULL)

@@ -9858,7 +9858,7 @@ Redis::pexpiretime

- + RedisCluster|array|false httl(string $key, array $fields)

@@ -9918,7 +9918,7 @@ Redis::pexpiretime

- + RedisCluster|array|false hpttl(string $key, array $fields)

@@ -9978,7 +9978,7 @@ Redis::pexpiretime

- + RedisCluster|array|false hexpiretime(string $key, array $fields)

@@ -10038,7 +10038,7 @@ Redis::pexpiretime

- + RedisCluster|array|false hpexpiretime(string $key, array $fields)

@@ -10098,7 +10098,7 @@ Redis::pexpiretime

- + RedisCluster|array|false hpersist(string $key, array $fields)

@@ -10158,7 +10158,7 @@ Redis::pexpiretime

- + RedisCluster|array|false hvals(string $key)

@@ -10213,7 +10213,7 @@ Redis::pexpiretime

- + RedisCluster|int|false incr(string $key, int $by = 1)

@@ -10273,7 +10273,7 @@ Redis::pexpiretime

- + RedisCluster|int|false incrby(string $key, int $value)

@@ -10333,7 +10333,7 @@ Redis::pexpiretime

- + RedisCluster|float|false incrbyfloat(string $key, float $value)

@@ -10393,7 +10393,7 @@ Redis::pexpiretime

- + RedisCluster|array|false info(string|array $key_or_address, string ...$sections)

@@ -10456,7 +10456,7 @@ which cluster node we want to send the command to.

- + RedisCluster|array|false keys(string $pattern)

@@ -10511,7 +10511,7 @@ which cluster node we want to send the command to.

- + RedisCluster|int|false lastsave(string|array $key_or_address)

@@ -10566,7 +10566,7 @@ which cluster node we want to send the command to.

- + RedisCluster|string|bool lget(string $key, int $index)

@@ -10626,7 +10626,7 @@ which cluster node we want to send the command to.

- + mixed lindex(string $key, int $index)

@@ -10686,7 +10686,7 @@ which cluster node we want to send the command to.

- + RedisCluster|int|false linsert(string $key, string $pos, mixed $pivot, mixed $value)

@@ -10756,7 +10756,7 @@ which cluster node we want to send the command to.

- + RedisCluster|int|bool llen(string $key)

@@ -10811,7 +10811,7 @@ which cluster node we want to send the command to.

- + RedisCluster|bool|string|array lpop(string $key, int $count = 0)

@@ -10871,7 +10871,7 @@ which cluster node we want to send the command to.

- + RedisCluster|null|bool|int|array lpos(string $key, mixed $value, array|null $options = null)

@@ -10936,7 +10936,7 @@ which cluster node we want to send the command to.

- + RedisCluster|int|bool lpush(string $key, mixed $value, mixed ...$other_values)

@@ -11001,7 +11001,7 @@ which cluster node we want to send the command to.

- + RedisCluster|int|bool lpushx(string $key, mixed $value)

@@ -11061,7 +11061,7 @@ which cluster node we want to send the command to.

- + RedisCluster|array|false lrange(string $key, int $start, int $end)

@@ -11126,7 +11126,7 @@ which cluster node we want to send the command to.

- + RedisCluster|int|bool lrem(string $key, mixed $value, int $count = 0)

@@ -11191,7 +11191,7 @@ which cluster node we want to send the command to.

- + RedisCluster|bool lset(string $key, int $index, mixed $value)

@@ -11256,7 +11256,7 @@ which cluster node we want to send the command to.

- + RedisCluster|bool ltrim(string $key, int $start, int $end)

@@ -11321,7 +11321,7 @@ which cluster node we want to send the command to.

- + RedisCluster|array|false mget(array $keys)

@@ -11376,7 +11376,7 @@ which cluster node we want to send the command to.

- + RedisCluster|bool mset(array $key_values)

@@ -11431,7 +11431,7 @@ which cluster node we want to send the command to.

- + RedisCluster|array|false msetnx(array $key_values)

@@ -11486,7 +11486,7 @@ which cluster node we want to send the command to.

- + RedisCluster|bool multi(int $value = Redis::MULTI)

@@ -11530,7 +11530,7 @@ which cluster node we want to send the command to.

- + RedisCluster|int|string|false object(string $subcommand, string $key)

@@ -11590,7 +11590,7 @@ which cluster node we want to send the command to.

- + RedisCluster|bool persist(string $key)

@@ -11645,7 +11645,7 @@ which cluster node we want to send the command to.

- + RedisCluster|bool pexpire(string $key, int $timeout, string|null $mode = null)

@@ -11710,7 +11710,7 @@ which cluster node we want to send the command to.

- + RedisCluster|bool pexpireat(string $key, int $timestamp, string|null $mode = null)

@@ -11775,7 +11775,7 @@ which cluster node we want to send the command to.

- + RedisCluster|bool pfadd(string $key, array $elements)

@@ -11836,7 +11836,7 @@ Redis::pfadd

- + RedisCluster|int|false pfcount(string $key)

@@ -11892,7 +11892,7 @@ Redis::pfcount

- + RedisCluster|bool pfmerge(string $key, array $keys)

@@ -11953,7 +11953,7 @@ Redis::pfmerge

- + mixed ping(string|array $key_or_address, string|null $message = null)

@@ -12015,7 +12015,7 @@ Redis::ping

- + RedisCluster|bool psetex(string $key, int $timeout, string $value)

@@ -12080,7 +12080,7 @@ Redis::ping

- + void psubscribe(array $patterns, callable $callback)

@@ -12140,7 +12140,7 @@ Redis::ping

- + RedisCluster|int|false pttl(string $key)

@@ -12195,7 +12195,7 @@ Redis::ping

- + RedisCluster|bool|int publish(string $channel, string $message)

@@ -12255,7 +12255,7 @@ Redis::ping

- + mixed pubsub(string|array $key_or_address, string ...$values)

@@ -12315,7 +12315,7 @@ Redis::ping

- + bool|array punsubscribe(string $pattern, string ...$other_patterns)

@@ -12375,7 +12375,7 @@ Redis::ping

- + RedisCluster|bool|string randomkey(string|array $key_or_address)

@@ -12430,7 +12430,7 @@ Redis::ping

- + mixed rawcommand(string|array $key_or_address, string $command, mixed ...$args)

@@ -12495,7 +12495,7 @@ Redis::ping

- + RedisCluster|bool rename(string $key_src, string $key_dst)

@@ -12555,7 +12555,7 @@ Redis::ping

- + RedisCluster|bool renamenx(string $key, string $newkey)

@@ -12615,7 +12615,7 @@ Redis::ping

- + RedisCluster|bool restore(string $key, int $timeout, string $value, array|null $options = null)

@@ -12685,7 +12685,7 @@ Redis::ping

- + mixed role(string|array $key_or_address)

@@ -12740,7 +12740,7 @@ Redis::ping

- + RedisCluster|bool|string|array rpop(string $key, int $count = 0)

@@ -12800,7 +12800,7 @@ Redis::ping

- + RedisCluster|bool|string rpoplpush(string $src, string $dst)

@@ -12861,7 +12861,7 @@ Redis::rpoplpush

- + RedisCluster|int|false rpush(string $key, mixed ...$elements)

@@ -12921,7 +12921,7 @@ Redis::rpoplpush

- + RedisCluster|bool|int rpushx(string $key, string $value)

@@ -12981,7 +12981,7 @@ Redis::rpoplpush

- + RedisCluster|int|false sadd(string $key, mixed $value, mixed ...$other_values)

@@ -13046,7 +13046,7 @@ Redis::rpoplpush

- + RedisCluster|bool|int saddarray(string $key, array $values)

@@ -13106,7 +13106,7 @@ Redis::rpoplpush

- + RedisCluster|bool save(string|array $key_or_address)

@@ -13161,7 +13161,7 @@ Redis::rpoplpush

- + bool|array scan(null|int|string $iterator, string|array $key_or_address, string|null $pattern = null, int $count = 0)

@@ -13231,7 +13231,7 @@ Redis::rpoplpush

- + RedisCluster|int|false scard(string $key)

@@ -13286,7 +13286,7 @@ Redis::rpoplpush

- + mixed script(string|array $key_or_address, mixed ...$args)

@@ -13346,7 +13346,7 @@ Redis::rpoplpush

- + RedisCluster|array|false sdiff(string $key, string ...$other_keys)

@@ -13406,7 +13406,7 @@ Redis::rpoplpush

- + RedisCluster|int|false sdiffstore(string $dst, string $key, string ...$other_keys)

@@ -13471,7 +13471,7 @@ Redis::rpoplpush

- + RedisCluster|string|bool set(string $key, mixed $value, mixed $options = null)

@@ -13536,7 +13536,7 @@ Redis::rpoplpush

- + RedisCluster|int|false setbit(string $key, int $offset, bool $onoff)

@@ -13601,7 +13601,7 @@ Redis::rpoplpush

- + RedisCluster|bool setex(string $key, int $expire, mixed $value)

@@ -13666,7 +13666,7 @@ Redis::rpoplpush

- + RedisCluster|bool setnx(string $key, mixed $value)

@@ -13726,7 +13726,7 @@ Redis::rpoplpush

- + bool setoption(int $option, mixed $value)

@@ -13786,7 +13786,7 @@ Redis::rpoplpush

- + RedisCluster|int|false setrange(string $key, int $offset, string $value)

@@ -13851,7 +13851,7 @@ Redis::rpoplpush

- + RedisCluster|array|false sinter(array|string $key, string ...$other_keys)

@@ -13911,7 +13911,7 @@ Redis::rpoplpush

- + RedisCluster|int|false sintercard(array $keys, int $limit = -1)

@@ -13971,7 +13971,7 @@ Redis::rpoplpush

- + RedisCluster|int|false sinterstore(array|string $key, string ...$other_keys)

@@ -14031,7 +14031,7 @@ Redis::rpoplpush

- + RedisCluster|bool sismember(string $key, mixed $value)

@@ -14091,7 +14091,7 @@ Redis::rpoplpush

- + RedisCluster|array|false smismember(string $key, string $member, string ...$other_members)

@@ -14156,7 +14156,7 @@ Redis::rpoplpush

- + mixed slowlog(string|array $key_or_address, mixed ...$args)

@@ -14216,7 +14216,7 @@ Redis::rpoplpush

- + RedisCluster|array|false smembers(string $key)

@@ -14271,7 +14271,7 @@ Redis::rpoplpush

- + RedisCluster|bool smove(string $src, string $dst, string $member)

@@ -14336,7 +14336,7 @@ Redis::rpoplpush

- + RedisCluster|array|bool|int|string sort(string $key, array|null $options = null)

@@ -14397,7 +14397,7 @@ Redis::sort

- + RedisCluster|array|bool|int|string sort_ro(string $key, array|null $options = null)

@@ -14458,7 +14458,7 @@ Redis::sort_ro

- + RedisCluster|string|array|false spop(string $key, int $count = 0)

@@ -14518,7 +14518,7 @@ Redis::sort_ro

- + RedisCluster|string|array|false srandmember(string $key, int $count = 0)

@@ -14578,7 +14578,7 @@ Redis::sort_ro

- + RedisCluster|int|false srem(string $key, mixed $value, mixed ...$other_values)

@@ -14643,7 +14643,7 @@ Redis::sort_ro

- + array|false sscan(string $key, null|int|string $iterator, string|null $pattern = null, int $count = 0)

@@ -14713,7 +14713,7 @@ Redis::sort_ro

- + RedisCluster|int|false strlen(string $key)

@@ -14768,7 +14768,7 @@ Redis::sort_ro

- + void subscribe(array $channels, callable $cb)

@@ -14828,7 +14828,7 @@ Redis::sort_ro

- + RedisCluster|bool|array sunion(string $key, string ...$other_keys)

@@ -14888,7 +14888,7 @@ Redis::sort_ro

- + RedisCluster|int|false sunionstore(string $dst, string $key, string ...$other_keys)

@@ -14953,7 +14953,7 @@ Redis::sort_ro

- + RedisCluster|bool|array time(string|array $key_or_address)

@@ -15008,7 +15008,7 @@ Redis::sort_ro

- + RedisCluster|int|false ttl(string $key)

@@ -15063,7 +15063,7 @@ Redis::sort_ro

- + RedisCluster|int|false type(string $key)

@@ -15118,7 +15118,7 @@ Redis::sort_ro

- + bool|array unsubscribe(array $channels)

@@ -15173,7 +15173,7 @@ Redis::sort_ro
@@ -15233,7 +15233,7 @@ Redis::sort_ro

- + bool unwatch()

@@ -15278,7 +15278,7 @@ Redis::sort_ro

- + RedisCluster|bool watch(string $key, string ...$other_keys)

@@ -15338,7 +15338,7 @@ Redis::sort_ro

- + RedisCluster|int|false vadd(string $key, array $values, mixed $element, array|null $options = null)

@@ -15408,7 +15408,7 @@ Redis::sort_ro

- + RedisCluster|array|false vsim(string $key, mixed $member, array|null $options = null)

@@ -15473,7 +15473,7 @@ Redis::sort_ro

- + RedisCluster|int|false vcard(string $key)

@@ -15528,7 +15528,7 @@ Redis::sort_ro

- + RedisCluster|int|false vdim(string $key)

@@ -15583,7 +15583,7 @@ Redis::sort_ro

- + RedisCluster|array|false vinfo(string $key)

@@ -15638,7 +15638,7 @@ Redis::sort_ro

- + RedisCluster|bool vismember(string $key, mixed $member)

@@ -15686,7 +15686,7 @@ Redis::sort_ro

- + RedisCluster|array|false vemb(string $key, mixed $member, bool $raw = false)

@@ -15751,7 +15751,7 @@ Redis::sort_ro

- + RedisCluster|array|string|false vrandmember(string $key, int $count = 0)

@@ -15811,7 +15811,7 @@ Redis::sort_ro

- + RedisCluster|array|false vrange(string $key, string $min, string $max, int $count = -1)

@@ -15869,7 +15869,7 @@ Redis::sort_ro

- + RedisCluster|int|false vrem(string $key, mixed $member)

@@ -15929,7 +15929,7 @@ Redis::sort_ro
@@ -15994,7 +15994,7 @@ Redis::sort_ro

- + RedisCluster|array|string|false vgetattr(string $key, mixed $member, bool $decode = true)

@@ -16059,7 +16059,7 @@ Redis::sort_ro

- + RedisCluster|int|false vsetattr(string $key, mixed $member, array|string $attributes)

@@ -16124,7 +16124,7 @@ Redis::sort_ro

- + RedisCluster|int|false xack(string $key, string $group, array $ids)

@@ -16189,7 +16189,7 @@ Redis::sort_ro

- + RedisCluster|string|false xadd(string $key, string $id, array $values, int $maxlen = 0, bool $approx = false)

@@ -16264,7 +16264,7 @@ Redis::sort_ro

- + RedisCluster|string|array|false xclaim(string $key, string $group, string $consumer, int $min_iddle, array $ids, array $options)

@@ -16344,7 +16344,7 @@ Redis::sort_ro

- + RedisCluster|int|false xdel(string $key, array $ids)

@@ -16404,7 +16404,7 @@ Redis::sort_ro

- + mixed xgroup(string $operation, string|null $key = null, string|null $group = null, string|null $id_or_consumer = null, bool $mkstream = false, int $entries_read = -2)

@@ -16484,7 +16484,7 @@ Redis::sort_ro

- + RedisCluster|bool|array xautoclaim(string $key, string $group, string $consumer, int $min_idle, string $start, int $count = -1, bool $justid = false)

@@ -16569,7 +16569,7 @@ Redis::sort_ro

- + mixed xinfo(string $operation, string|null $arg1 = null, string|null $arg2 = null, int $count = -1)

@@ -16639,7 +16639,7 @@ Redis::sort_ro

- + RedisCluster|int|false xlen(string $key)

@@ -16694,7 +16694,7 @@ Redis::sort_ro

- + RedisCluster|array|false xpending(string $key, string $group, string|null $start = null, string|null $end = null, int $count = -1, string|null $consumer = null)

@@ -16774,7 +16774,7 @@ Redis::sort_ro

- + RedisCluster|bool|array xrange(string $key, string $start, string $end, int $count = -1)

@@ -16844,7 +16844,7 @@ Redis::sort_ro

- + RedisCluster|bool|array xread(array $streams, int $count = -1, int $block = -1)

@@ -16909,7 +16909,7 @@ Redis::sort_ro

- + RedisCluster|bool|array xreadgroup(string $group, string $consumer, array $streams, int $count = 1, int $block = 1)

@@ -16984,7 +16984,7 @@ Redis::sort_ro

- + RedisCluster|bool|array xrevrange(string $key, string $start, string $end, int $count = -1)

@@ -17054,7 +17054,7 @@ Redis::sort_ro

- + RedisCluster|int|false xtrim(string $key, int $maxlen, bool $approx = false, bool $minid = false, int $limit = -1)

@@ -17129,7 +17129,7 @@ Redis::sort_ro

- + RedisCluster|int|float|false zadd(string $key, array|float $score_or_options, mixed ...$more_scores_and_mems)

@@ -17194,7 +17194,7 @@ Redis::sort_ro

- + RedisCluster|int|false zcard(string $key)

@@ -17249,7 +17249,7 @@ Redis::sort_ro

- + RedisCluster|int|false zcount(string $key, string $start, string $end)

@@ -17314,7 +17314,7 @@ Redis::sort_ro

- + RedisCluster|float|false zincrby(string $key, float $value, string $member)

@@ -17379,7 +17379,7 @@ Redis::sort_ro

- + RedisCluster|int|false zinterstore(string $dst, array $keys, array|null $weights = null, string|null $aggregate = null)

@@ -17449,7 +17449,7 @@ Redis::sort_ro

- + RedisCluster|int|false zintercard(array $keys, int $limit = -1)

@@ -17509,7 +17509,7 @@ Redis::sort_ro

- + RedisCluster|int|false zlexcount(string $key, string $min, string $max)

@@ -17574,7 +17574,7 @@ Redis::sort_ro

- + RedisCluster|bool|array zpopmax(string $key, int|null $value = null)

@@ -17634,7 +17634,7 @@ Redis::sort_ro

- + RedisCluster|bool|array zpopmin(string $key, int|null $value = null)

@@ -17694,7 +17694,7 @@ Redis::sort_ro

- + RedisCluster|array|bool zrange(string $key, mixed $start, mixed $end, array|bool|null $options = null)

@@ -17764,7 +17764,7 @@ Redis::sort_ro

- + RedisCluster|int|false zrangestore(string $dstkey, string $srckey, int $start, int $end, array|bool|null $options = null)

@@ -17839,7 +17839,7 @@ Redis::sort_ro

- + RedisCluster|string|array zrandmember(string $key, array|null $options = null)

@@ -17899,7 +17899,7 @@ Redis::sort_ro

- + RedisCluster|array|false zrangebylex(string $key, string $min, string $max, int $offset = -1, int $count = -1)

@@ -17974,7 +17974,7 @@ Redis::sort_ro

- + RedisCluster|array|false zrangebyscore(string $key, string $start, string $end, array $options = [])

@@ -18044,7 +18044,7 @@ Redis::sort_ro

- + RedisCluster|int|false zrank(string $key, mixed $member)

@@ -18104,7 +18104,7 @@ Redis::sort_ro

- + RedisCluster|int|false zrem(string $key, string $value, string ...$other_values)

@@ -18169,7 +18169,7 @@ Redis::sort_ro

- + RedisCluster|int|false zremrangebylex(string $key, string $min, string $max)

@@ -18234,7 +18234,7 @@ Redis::sort_ro

- + RedisCluster|int|false zremrangebyrank(string $key, string $min, string $max)

@@ -18299,7 +18299,7 @@ Redis::sort_ro

- + RedisCluster|int|false zremrangebyscore(string $key, string $min, string $max)

@@ -18364,7 +18364,7 @@ Redis::sort_ro

- + RedisCluster|bool|array zrevrange(string $key, string $min, string $max, array|null $options = null)

@@ -18434,7 +18434,7 @@ Redis::sort_ro

- + RedisCluster|bool|array zrevrangebylex(string $key, string $min, string $max, array|null $options = null)

@@ -18504,7 +18504,7 @@ Redis::sort_ro

- + RedisCluster|bool|array zrevrangebyscore(string $key, string $min, string $max, array|null $options = null)

@@ -18574,7 +18574,7 @@ Redis::sort_ro

- + RedisCluster|int|false zrevrank(string $key, mixed $member)

@@ -18634,7 +18634,7 @@ Redis::sort_ro

- + RedisCluster|bool|array zscan(string $key, null|int|string $iterator, string|null $pattern = null, int $count = 0)

@@ -18704,7 +18704,7 @@ Redis::sort_ro

- + RedisCluster|float|false zscore(string $key, mixed $member)

@@ -18764,7 +18764,7 @@ Redis::sort_ro

- + RedisCluster|array|false zmscore(string $key, mixed $member, mixed ...$other_members)

@@ -18829,7 +18829,7 @@ Redis::sort_ro

- + RedisCluster|int|false zunionstore(string $dst, array $keys, array|null $weights = null, string|null $aggregate = null)

@@ -18899,7 +18899,7 @@ Redis::sort_ro

- + RedisCluster|array|false zinter(array $keys, array|null $weights = null, array|null $options = null)

@@ -18964,7 +18964,7 @@ Redis::sort_ro

- + RedisCluster|int|false zdiffstore(string $dst, array $keys)

@@ -19024,7 +19024,7 @@ Redis::sort_ro

- + RedisCluster|array|false zunion(array $keys, array|null $weights = null, array|null $options = null)

@@ -19089,7 +19089,7 @@ Redis::sort_ro

- + RedisCluster|array|false zdiff(array $keys, array|null $options = null)

@@ -19149,7 +19149,7 @@ Redis::sort_ro

- + RedisCluster|string|false digest(string $key)

diff --git a/docs/RedisClusterException.html b/docs/RedisClusterException.html index bfb1b82a..380f02b5 100644 --- a/docs/RedisClusterException.html +++ b/docs/RedisClusterException.html @@ -229,7 +229,7 @@ + title="PhpRedis API (develop)" /> @@ -292,7 +292,7 @@

class - RedisClusterException extends RuntimeException (View source) + RedisClusterException extends RuntimeException (View source)

diff --git a/docs/RedisException.html b/docs/RedisException.html index bfccff8d..50d5d409 100644 --- a/docs/RedisException.html +++ b/docs/RedisException.html @@ -229,7 +229,7 @@ + title="PhpRedis API (develop)" /> @@ -292,7 +292,7 @@

class - RedisException extends RuntimeException (View source) + RedisException extends RuntimeException (View source)

diff --git a/docs/RedisSentinel.html b/docs/RedisSentinel.html index ed10dcec..d089738e 100644 --- a/docs/RedisSentinel.html +++ b/docs/RedisSentinel.html @@ -229,7 +229,7 @@ + title="PhpRedis API (develop)" /> @@ -292,7 +292,7 @@

class - RedisSentinel (View source) + RedisSentinel (View source)

@@ -447,7 +447,7 @@

- + __construct(array|null $options = null)

@@ -480,7 +480,7 @@

- + bool|RedisSentinel ckquorum(string $master)

@@ -524,7 +524,7 @@

- + bool|RedisSentinel failover(string $master)

@@ -568,7 +568,7 @@

- + bool|RedisSentinel flushconfig()

@@ -602,7 +602,7 @@

- + array|bool|RedisSentinel getMasterAddrByName(string $master)

@@ -646,7 +646,7 @@

- + array|bool|RedisSentinel master(string $master)

@@ -690,7 +690,7 @@

- + array|bool|RedisSentinel masters()

@@ -724,7 +724,7 @@

- + string myid()

@@ -758,7 +758,7 @@

- + bool|RedisSentinel ping()

@@ -792,7 +792,7 @@

- + int|RedisSentinel reset(string $pattern)

@@ -836,7 +836,7 @@

- + array|bool|RedisSentinel sentinels(string $master)

@@ -880,7 +880,7 @@

- + array|bool|RedisSentinel slaves(string $master)

diff --git a/docs/[Global_Namespace].html b/docs/[Global_Namespace].html index da46b2c2..0d2b6362 100644 --- a/docs/[Global_Namespace].html +++ b/docs/[Global_Namespace].html @@ -229,7 +229,7 @@ + title="PhpRedis API (develop)" /> diff --git a/docs/classes.html b/docs/classes.html index 9bed37eb..77ecd15f 100644 --- a/docs/classes.html +++ b/docs/classes.html @@ -229,7 +229,7 @@ + title="PhpRedis API (develop)" /> diff --git a/docs/doc-index.html b/docs/doc-index.html index e941b952..95f8decf 100644 --- a/docs/doc-index.html +++ b/docs/doc-index.html @@ -229,7 +229,7 @@ + title="PhpRedis API (develop)" /> diff --git a/docs/index.html b/docs/index.html index adc1862c..456de9ba 100644 --- a/docs/index.html +++ b/docs/index.html @@ -229,7 +229,7 @@ + title="PhpRedis API (develop)" /> diff --git a/docs/interfaces.html b/docs/interfaces.html index 8e5151ce..67bd3ed3 100644 --- a/docs/interfaces.html +++ b/docs/interfaces.html @@ -229,7 +229,7 @@ + title="PhpRedis API (develop)" /> diff --git a/docs/namespaces.html b/docs/namespaces.html index f69e4d3c..4ee76ad8 100644 --- a/docs/namespaces.html +++ b/docs/namespaces.html @@ -229,7 +229,7 @@ + title="PhpRedis API (develop)" /> diff --git a/docs/opensearch.xml b/docs/opensearch.xml index 73c0fe97..d51e0403 100644 --- a/docs/opensearch.xml +++ b/docs/opensearch.xml @@ -1,7 +1,7 @@ - PhpRedis API (main) - Searches PhpRedis API (main) + PhpRedis API (develop) + Searches PhpRedis API (develop) PhpRedis API UTF-8 diff --git a/docs/renderer.index b/docs/renderer.index index f62e7d2c..bdce0a68 100644 --- a/docs/renderer.index +++ b/docs/renderer.index @@ -1 +1 @@ -O:21:"Doctum\Renderer\Index":3:{i:0;a:6:{s:5:"Redis";s:40:"0f4017b46063c1e1662b4d540387772581a1e9e6";s:10:"RedisArray";s:40:"2a50f02b4f62d96a18ec122fec35bd6e03bf735a";s:12:"RedisCluster";s:40:"76e57d541155478d414e8cfe84d56f6d07ec6e3d";s:21:"RedisClusterException";s:40:"76e57d541155478d414e8cfe84d56f6d07ec6e3d";s:14:"RedisException";s:40:"0f4017b46063c1e1662b4d540387772581a1e9e6";s:13:"RedisSentinel";s:40:"ca40579af888c5bb0661cd0201d840297474479a";}i:1;a:1:{i:0;s:4:"main";}i:2;a:1:{i:0;s:0:"";}} \ No newline at end of file +O:21:"Doctum\Renderer\Index":3:{i:0;a:6:{s:5:"Redis";s:40:"0f4017b46063c1e1662b4d540387772581a1e9e6";s:10:"RedisArray";s:40:"2a50f02b4f62d96a18ec122fec35bd6e03bf735a";s:12:"RedisCluster";s:40:"76e57d541155478d414e8cfe84d56f6d07ec6e3d";s:21:"RedisClusterException";s:40:"76e57d541155478d414e8cfe84d56f6d07ec6e3d";s:14:"RedisException";s:40:"0f4017b46063c1e1662b4d540387772581a1e9e6";s:13:"RedisSentinel";s:40:"ca40579af888c5bb0661cd0201d840297474479a";}i:1;a:1:{i:0;s:7:"develop";}i:2;a:1:{i:0;s:0:"";}} \ No newline at end of file diff --git a/docs/search.html b/docs/search.html index b0a38e50..9253b2ca 100644 --- a/docs/search.html +++ b/docs/search.html @@ -229,7 +229,7 @@ + title="PhpRedis API (develop)" /> diff --git a/docs/traits.html b/docs/traits.html index 6aaf8fa7..950e3705 100644 --- a/docs/traits.html +++ b/docs/traits.html @@ -229,7 +229,7 @@ + title="PhpRedis API (develop)" /> diff --git a/doctum-config.php b/doctum-config.php index fae7aa81..03315073 100644 --- a/doctum-config.php +++ b/doctum-config.php @@ -5,6 +5,7 @@ use Doctum\RemoteRepository\GitHubRemoteRepository; use Symfony\Component\Finder\Finder; $root = realpath(__DIR__); +Doctum::$defaultVersionName = 'develop'; $iterator = Finder::create() ->files()