From 76b67fffbe03d229e48b4fdab6d5c2648d253aa4 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 2 Aug 2023 15:52:45 +0200 Subject: update to 6.0.0RC1 rename to php-pecl-redis6 for new API disable test suite for SCL open https://github.com/phpredis/phpredis/pull/2367 PHP 7.2 required --- REFLECTION | 3725 +++++++++++++++++++++++++++++++++++++----------------------- 1 file changed, 2324 insertions(+), 1401 deletions(-) (limited to 'REFLECTION') diff --git a/REFLECTION b/REFLECTION index f3599f5..9593d5e 100644 --- a/REFLECTION +++ b/REFLECTION @@ -1,4 +1,4 @@ -Extension [ extension #117 redis version 5.3.7 ] { +Extension [ extension #120 redis version 6.0.0RC1 ] { - Dependencies { Dependency [ igbinary (Required) ] @@ -96,17 +96,20 @@ Extension [ extension #117 redis version 5.3.7 ] { Current = '0' } Entry [ redis.session.lock_retries ] - Current = '10' + Current = '100' } Entry [ redis.session.lock_wait_time ] - Current = '2000' + Current = '20000' + } + Entry [ redis.session.early_refresh ] + Current = '0' } } - Classes [6] { Class [ class Redis ] { - - Constants [48] { + - Constants [49] { Constant [ public int REDIS_NOT_FOUND ] { 0 } Constant [ public int REDIS_STRING ] { 1 } Constant [ public int REDIS_SET ] { 2 } @@ -114,9 +117,9 @@ Extension [ extension #117 redis version 5.3.7 ] { Constant [ public int REDIS_ZSET ] { 4 } Constant [ public int REDIS_HASH ] { 5 } Constant [ public int REDIS_STREAM ] { 6 } - Constant [ public int PIPELINE ] { 2 } Constant [ public int ATOMIC ] { 0 } Constant [ public int MULTI ] { 1 } + Constant [ public int PIPELINE ] { 2 } Constant [ public int OPT_SERIALIZER ] { 1 } Constant [ public int OPT_PREFIX ] { 2 } Constant [ public int OPT_READ_TIMEOUT ] { 3 } @@ -133,7 +136,6 @@ Extension [ extension #117 redis version 5.3.7 ] { Constant [ public int COMPRESSION_NONE ] { 0 } Constant [ public int COMPRESSION_LZF ] { 1 } Constant [ public int COMPRESSION_ZSTD ] { 2 } - Constant [ public int COMPRESSION_ZSTD_MIN ] { 1 } Constant [ public int COMPRESSION_ZSTD_DEFAULT ] { 3 } Constant [ public int COMPRESSION_ZSTD_MAX ] { 22 } Constant [ public int COMPRESSION_LZ4 ] { 3 } @@ -142,8 +144,10 @@ Extension [ extension #117 redis version 5.3.7 ] { Constant [ public int SCAN_NORETRY ] { 0 } Constant [ public int SCAN_PREFIX ] { 2 } Constant [ public int SCAN_NOPREFIX ] { 3 } - Constant [ public string AFTER ] { after } Constant [ public string BEFORE ] { before } + Constant [ public string AFTER ] { after } + Constant [ public string LEFT ] { left } + Constant [ public string RIGHT ] { right } Constant [ public int OPT_MAX_RETRIES ] { 11 } Constant [ public int OPT_BACKOFF_ALGORITHM ] { 12 } Constant [ public int BACKOFF_ALGORITHM_DEFAULT ] { 0 } @@ -166,10 +170,11 @@ Extension [ extension #117 redis version 5.3.7 ] { - Properties [0] { } - - Methods [240] { + - Methods [254] { Method [ public method __construct ] { - - Parameters [0] { + - Parameters [1] { + Parameter #0 [ array $options = null ] } } @@ -179,758 +184,1127 @@ Extension [ extension #117 redis version 5.3.7 ] { } } - Method [ public method _prefix ] { + Method [ public method _compress ] { - Parameters [1] { - Parameter #0 [ $key ] + Parameter #0 [ string $value ] } + - Return [ string ] } - Method [ public method _serialize ] { + Method [ public method _uncompress ] { - Parameters [1] { - Parameter #0 [ $value ] + Parameter #0 [ string $value ] } + - Return [ string ] } - Method [ public method _unserialize ] { + Method [ public method _prefix ] { - Parameters [1] { - Parameter #0 [ $value ] + Parameter #0 [ string $key ] } + - Return [ string ] } - Method [ public method _pack ] { + Method [ public method _serialize ] { - Parameters [1] { - Parameter #0 [ $value ] + Parameter #0 [ mixed $value ] } + - Return [ string ] } - Method [ public method _unpack ] { + Method [ public method _unserialize ] { - Parameters [1] { - Parameter #0 [ $value ] + Parameter #0 [ string $value ] } + - Return [ mixed ] } - Method [ public method _compress ] { + Method [ public method _pack ] { - Parameters [1] { - Parameter #0 [ $value ] + Parameter #0 [ mixed $value ] } + - Return [ string ] } - Method [ public method _uncompress ] { + Method [ public method _unpack ] { - Parameters [1] { - Parameter #0 [ $value ] + Parameter #0 [ string $value ] } + - Return [ mixed ] } Method [ public method acl ] { - Parameters [2] { - Parameter #0 [ $subcmd ] - Parameter #1 [ ...$args ] + Parameter #0 [ string $subcmd ] + Parameter #1 [ string ...$args ] } + - Return [ mixed ] } Method [ public method append ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $value ] + Parameter #0 [ string $key ] + Parameter #1 [ mixed $value ] } + - Return [ Redis|int|false ] } Method [ public method auth ] { - Parameters [1] { - Parameter #0 [ $auth ] + Parameter #0 [ mixed $credentials ] } + - Return [ Redis|bool ] } Method [ public method bgSave ] { - Parameters [0] { } + - Return [ Redis|bool ] } Method [ public method bgrewriteaof ] { - Parameters [0] { } + - Return [ Redis|bool ] } Method [ public method bitcount ] { - - Parameters [1] { - Parameter #0 [ $key ] + - Parameters [4] { + Parameter #0 [ string $key ] + Parameter #1 [ int $start = 0 ] + Parameter #2 [ int $end = -1 ] + Parameter #3 [ bool $bybit = false ] } + - Return [ Redis|int|false ] } Method [ public method bitop ] { - Parameters [4] { - Parameter #0 [ $operation ] - Parameter #1 [ $ret_key ] - Parameter #2 [ $key ] - Parameter #3 [ ...$other_keys ] + Parameter #0 [ string $operation ] + Parameter #1 [ string $deskey ] + Parameter #2 [ string $srckey ] + Parameter #3 [ string ...$other_keys ] } + - Return [ Redis|int|false ] } Method [ public method bitpos ] { - - Parameters [4] { - Parameter #0 [ $key ] - Parameter #1 [ $bit ] - Parameter #2 [ $start = ] - Parameter #3 [ $end = ] + - Parameters [5] { + Parameter #0 [ string $key ] + Parameter #1 [ bool $bit ] + Parameter #2 [ int $start = 0 ] + Parameter #3 [ int $end = -1 ] + Parameter #4 [ bool $bybit = false ] } + - Return [ Redis|int|false ] } Method [ public method blPop ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $timeout_or_key ] - Parameter #2 [ ...$extra_args ] + Parameter #0 [ array|string $key_or_keys ] + Parameter #1 [ string|int|float $timeout_or_key ] + Parameter #2 [ mixed ...$extra_args ] } + - Return [ Redis|array|false|null ] } Method [ public method brPop ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $timeout_or_key ] - Parameter #2 [ ...$extra_args ] + Parameter #0 [ array|string $key_or_keys ] + Parameter #1 [ string|int|float $timeout_or_key ] + Parameter #2 [ mixed ...$extra_args ] } + - Return [ Redis|array|false|null ] } Method [ public method brpoplpush ] { - Parameters [3] { - Parameter #0 [ $src ] - Parameter #1 [ $dst ] - Parameter #2 [ $timeout ] + Parameter #0 [ string $src ] + Parameter #1 [ string $dst ] + Parameter #2 [ int|float $timeout ] } + - Return [ Redis|string|false ] } Method [ public method bzPopMax ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $timeout_or_key ] - Parameter #2 [ ...$extra_args ] + Parameter #0 [ array|string $key ] + Parameter #1 [ string|int $timeout_or_key ] + Parameter #2 [ mixed ...$extra_args ] } + - Return [ Redis|array|false ] } Method [ public method bzPopMin ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $timeout_or_key ] - Parameter #2 [ ...$extra_args ] + Parameter #0 [ array|string $key ] + Parameter #1 [ string|int $timeout_or_key ] + Parameter #2 [ mixed ...$extra_args ] + } + - Return [ Redis|array|false ] + } + + Method [ public method bzmpop ] { + + - Parameters [4] { + Parameter #0 [ float $timeout ] + Parameter #1 [ array $keys ] + Parameter #2 [ string $from ] + Parameter #3 [ int $count = 1 ] + } + - Return [ Redis|array|false|null ] + } + + Method [ public method zmpop ] { + + - Parameters [3] { + Parameter #0 [ array $keys ] + Parameter #1 [ string $from ] + Parameter #2 [ int $count = 1 ] + } + - Return [ Redis|array|false|null ] + } + + Method [ public method blmpop ] { + + - Parameters [4] { + Parameter #0 [ float $timeout ] + Parameter #1 [ array $keys ] + Parameter #2 [ string $from ] + Parameter #3 [ int $count = 1 ] + } + - Return [ Redis|array|false|null ] + } + + Method [ public method lmpop ] { + + - Parameters [3] { + Parameter #0 [ array $keys ] + Parameter #1 [ string $from ] + Parameter #2 [ int $count = 1 ] } + - Return [ Redis|array|false|null ] } Method [ public method clearLastError ] { - Parameters [0] { } + - Return [ bool ] } Method [ public method client ] { - Parameters [2] { - Parameter #0 [ $cmd ] - Parameter #1 [ ...$args ] + Parameter #0 [ string $opt ] + Parameter #1 [ mixed ...$args ] } + - Return [ mixed ] } Method [ public method close ] { - Parameters [0] { } + - Return [ bool ] } Method [ public method command ] { - - Parameters [1] { - Parameter #0 [ ...$args ] + - Parameters [2] { + Parameter #0 [ string $opt = null ] + Parameter #1 [ mixed ...$args ] } + - Return [ mixed ] } Method [ public method config ] { - Parameters [3] { - Parameter #0 [ $cmd ] - Parameter #1 [ $key ] - Parameter #2 [ $value = ] + Parameter #0 [ string $operation ] + Parameter #1 [ array|string|null $key_or_settings = NULL ] + Parameter #2 [ ?string $value = NULL ] } + - Return [ mixed ] } Method [ public method connect ] { - - Parameters [4] { - Parameter #0 [ $host ] - Parameter #1 [ $port = ] - Parameter #2 [ $timeout = ] - Parameter #3 [ $retry_interval = ] + - Parameters [7] { + Parameter #0 [ string $host ] + Parameter #1 [ int $port = 6379 ] + Parameter #2 [ float $timeout = 0 ] + Parameter #3 [ string $persistent_id = null ] + Parameter #4 [ int $retry_interval = 0 ] + Parameter #5 [ float $read_timeout = 0 ] + Parameter #6 [ array $context = null ] + } + - Return [ bool ] + } + + Method [ public method copy ] { + + - Parameters [3] { + Parameter #0 [ string $src ] + Parameter #1 [ string $dst ] + Parameter #2 [ array $options = null ] } + - Return [ Redis|bool ] } Method [ public method dbSize ] { - Parameters [0] { } + - Return [ Redis|int|false ] } Method [ public method debug ] { - Parameters [1] { - Parameter #0 [ $key ] + Parameter #0 [ string $key ] } + - Return [ Redis|string ] } Method [ public method decr ] { - - Parameters [1] { - Parameter #0 [ $key ] + - Parameters [2] { + Parameter #0 [ string $key ] + Parameter #1 [ int $by = 1 ] } + - Return [ Redis|int|false ] } Method [ public method decrBy ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $value ] + Parameter #0 [ string $key ] + Parameter #1 [ int $value ] } + - Return [ Redis|int|false ] } Method [ public method del ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ ...$other_keys ] + Parameter #0 [ array|string $key ] + Parameter #1 [ string ...$other_keys ] + } + - Return [ Redis|int|false ] + } + + Method [ public method delete ] { + + - Parameters [2] { + Parameter #0 [ array|string $key ] + Parameter #1 [ string ...$other_keys ] } + - Return [ Redis|int|false ] } Method [ public method discard ] { - Parameters [0] { } + - Return [ Redis|bool ] } Method [ public method dump ] { - Parameters [1] { - Parameter #0 [ $key ] + Parameter #0 [ string $key ] } + - Return [ Redis|string ] } Method [ public method echo ] { - Parameters [1] { - Parameter #0 [ $msg ] + Parameter #0 [ string $str ] } + - Return [ Redis|string|false ] } Method [ public method eval ] { - Parameters [3] { - Parameter #0 [ $script ] - Parameter #1 [ $args = ] - Parameter #2 [ $num_keys = ] + Parameter #0 [ string $script ] + Parameter #1 [ array $args = [] ] + Parameter #2 [ int $num_keys = 0 ] } + - Return [ mixed ] + } + + Method [ public method eval_ro ] { + + - Parameters [3] { + Parameter #0 [ string $script_sha ] + Parameter #1 [ array $args = [] ] + Parameter #2 [ int $num_keys = 0 ] + } + - Return [ mixed ] } Method [ public method evalsha ] { - Parameters [3] { - Parameter #0 [ $script_sha ] - Parameter #1 [ $args = ] - Parameter #2 [ $num_keys = ] + Parameter #0 [ string $sha1 ] + Parameter #1 [ array $args = [] ] + Parameter #2 [ int $num_keys = 0 ] + } + - Return [ mixed ] + } + + Method [ public method evalsha_ro ] { + + - Parameters [3] { + Parameter #0 [ string $sha1 ] + Parameter #1 [ array $args = [] ] + Parameter #2 [ int $num_keys = 0 ] } + - Return [ mixed ] } Method [ public method exec ] { - Parameters [0] { } + - Return [ Redis|array|false ] } Method [ public method exists ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ ...$other_keys ] + Parameter #0 [ mixed $key ] + Parameter #1 [ mixed ...$other_keys ] } + - Return [ Redis|int|bool ] } Method [ public method expire ] { - - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $timeout ] + - Parameters [3] { + Parameter #0 [ string $key ] + Parameter #1 [ int $timeout ] + Parameter #2 [ ?string $mode = NULL ] } + - Return [ Redis|bool ] } Method [ public method expireAt ] { - - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $timestamp ] + - Parameters [3] { + Parameter #0 [ string $key ] + Parameter #1 [ int $timestamp ] + Parameter #2 [ ?string $mode = NULL ] + } + - Return [ Redis|bool ] + } + + Method [ public method failover ] { + + - Parameters [3] { + Parameter #0 [ ?array $to = null ] + Parameter #1 [ bool $abort = false ] + Parameter #2 [ int $timeout = 0 ] + } + - Return [ Redis|bool ] + } + + Method [ public method expiretime ] { + + - Parameters [1] { + Parameter #0 [ string $key ] + } + - Return [ Redis|int|false ] + } + + Method [ public method pexpiretime ] { + + - Parameters [1] { + Parameter #0 [ string $key ] + } + - Return [ Redis|int|false ] + } + + Method [ public method fcall ] { + + - Parameters [3] { + Parameter #0 [ string $fn ] + Parameter #1 [ array $keys = [] ] + Parameter #2 [ array $args = [] ] + } + - Return [ mixed ] + } + + Method [ public method fcall_ro ] { + + - Parameters [3] { + Parameter #0 [ string $fn ] + Parameter #1 [ array $keys = [] ] + Parameter #2 [ array $args = [] ] } + - Return [ mixed ] } Method [ public method flushAll ] { - Parameters [1] { - Parameter #0 [ $async = ] + Parameter #0 [ ?bool $sync = null ] } + - Return [ Redis|bool ] } Method [ public method flushDB ] { - Parameters [1] { - Parameter #0 [ $async = ] + Parameter #0 [ ?bool $sync = null ] } + - Return [ Redis|bool ] + } + + Method [ public method function ] { + + - Parameters [2] { + Parameter #0 [ string $operation ] + Parameter #1 [ mixed ...$args ] + } + - Return [ Redis|array|string|bool ] } Method [ public method geoadd ] { - Parameters [5] { - Parameter #0 [ $key ] - Parameter #1 [ $lng ] - Parameter #2 [ $lat ] - Parameter #3 [ $member ] - Parameter #4 [ ...$other_triples ] + Parameter #0 [ string $key ] + Parameter #1 [ float $lng ] + Parameter #2 [ float $lat ] + Parameter #3 [ string $member ] + Parameter #4 [ mixed ...$other_triples_and_options ] } + - Return [ Redis|int|false ] } Method [ public method geodist ] { - Parameters [4] { - Parameter #0 [ $key ] - Parameter #1 [ $src ] - Parameter #2 [ $dst ] - Parameter #3 [ $unit = ] + Parameter #0 [ string $key ] + Parameter #1 [ string $src ] + Parameter #2 [ string $dst ] + Parameter #3 [ ?string $unit = null ] } + - Return [ Redis|float|false ] } Method [ public method geohash ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $member ] - Parameter #2 [ ...$other_members ] + Parameter #0 [ string $key ] + Parameter #1 [ string $member ] + Parameter #2 [ string ...$other_members ] } + - Return [ Redis|array|false ] } Method [ public method geopos ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $member ] - Parameter #2 [ ...$other_members ] + Parameter #0 [ string $key ] + Parameter #1 [ string $member ] + Parameter #2 [ string ...$other_members ] } + - Return [ Redis|array|false ] } Method [ public method georadius ] { - Parameters [6] { - Parameter #0 [ $key ] - Parameter #1 [ $lng ] - Parameter #2 [ $lan ] - Parameter #3 [ $radius ] - Parameter #4 [ $unit ] - Parameter #5 [ array $opts = ] + Parameter #0 [ string $key ] + Parameter #1 [ float $lng ] + Parameter #2 [ float $lat ] + Parameter #3 [ float $radius ] + Parameter #4 [ string $unit ] + Parameter #5 [ array $options = [] ] } + - Return [ mixed ] } Method [ public method georadius_ro ] { - Parameters [6] { - Parameter #0 [ $key ] - Parameter #1 [ $lng ] - Parameter #2 [ $lan ] - Parameter #3 [ $radius ] - Parameter #4 [ $unit ] - Parameter #5 [ array $opts = ] + Parameter #0 [ string $key ] + Parameter #1 [ float $lng ] + Parameter #2 [ float $lat ] + Parameter #3 [ float $radius ] + Parameter #4 [ string $unit ] + Parameter #5 [ array $options = [] ] } + - Return [ mixed ] } Method [ public method georadiusbymember ] { - Parameters [5] { - Parameter #0 [ $key ] - Parameter #1 [ $member ] - Parameter #2 [ $radius ] - Parameter #3 [ $unit ] - Parameter #4 [ array $opts = ] + Parameter #0 [ string $key ] + Parameter #1 [ string $member ] + Parameter #2 [ float $radius ] + Parameter #3 [ string $unit ] + Parameter #4 [ array $options = [] ] } + - Return [ mixed ] } Method [ public method georadiusbymember_ro ] { - Parameters [5] { - Parameter #0 [ $key ] - Parameter #1 [ $member ] - Parameter #2 [ $radius ] - Parameter #3 [ $unit ] - Parameter #4 [ array $opts = ] + Parameter #0 [ string $key ] + Parameter #1 [ string $member ] + Parameter #2 [ float $radius ] + Parameter #3 [ string $unit ] + Parameter #4 [ array $options = [] ] + } + - Return [ mixed ] + } + + Method [ public method geosearch ] { + + - Parameters [5] { + Parameter #0 [ string $key ] + Parameter #1 [ array|string $position ] + Parameter #2 [ array|int|float $shape ] + Parameter #3 [ string $unit ] + Parameter #4 [ array $options = [] ] + } + - Return [ array ] + } + + Method [ public method geosearchstore ] { + + - Parameters [6] { + Parameter #0 [ string $dst ] + Parameter #1 [ string $src ] + Parameter #2 [ array|string $position ] + Parameter #3 [ array|int|float $shape ] + Parameter #4 [ string $unit ] + Parameter #5 [ array $options = [] ] } + - Return [ Redis|array|int|false ] } Method [ public method get ] { - Parameters [1] { - Parameter #0 [ $key ] + Parameter #0 [ string $key ] } + - Return [ mixed ] } Method [ public method getAuth ] { - Parameters [0] { } + - Return [ mixed ] } Method [ public method getBit ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $offset ] + Parameter #0 [ string $key ] + Parameter #1 [ int $idx ] } + - Return [ Redis|int|false ] + } + + Method [ public method getEx ] { + + - Parameters [2] { + Parameter #0 [ string $key ] + Parameter #1 [ array $options = [] ] + } + - Return [ Redis|string|bool ] } Method [ public method getDBNum ] { - Parameters [0] { } + - Return [ int ] + } + + Method [ public method getDel ] { + + - Parameters [1] { + Parameter #0 [ string $key ] + } + - Return [ Redis|string|bool ] } Method [ public method getHost ] { - Parameters [0] { } + - Return [ string ] } Method [ public method getLastError ] { - Parameters [0] { } + - Return [ ?string ] } Method [ public method getMode ] { - Parameters [0] { } + - Return [ int ] } Method [ public method getOption ] { - Parameters [1] { - Parameter #0 [ $option ] + Parameter #0 [ int $option ] } + - Return [ mixed ] } Method [ public method getPersistentID ] { - Parameters [0] { } + - Return [ ?string ] } Method [ public method getPort ] { - Parameters [0] { } + - Return [ int ] } Method [ public method getRange ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $start ] - Parameter #2 [ $end ] + Parameter #0 [ string $key ] + Parameter #1 [ int $start ] + Parameter #2 [ int $end ] + } + - Return [ Redis|string|false ] + } + + Method [ public method lcs ] { + + - Parameters [3] { + Parameter #0 [ string $key1 ] + Parameter #1 [ string $key2 ] + Parameter #2 [ ?array $options = NULL ] } + - Return [ Redis|array|string|int|false ] } Method [ public method getReadTimeout ] { - Parameters [0] { } + - Return [ float ] } - Method [ public method getSet ] { + Method [ public method getset ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $value ] + Parameter #0 [ string $key ] + Parameter #1 [ mixed $value ] } + - Return [ Redis|string|false ] } Method [ public method getTimeout ] { - Parameters [0] { } + - Return [ float|false ] + } + + Method [ public method getTransferredBytes ] { + + - Parameters [0] { + } + - Return [ array ] + } + + Method [ public method clearTransferredBytes ] { + + - Parameters [0] { + } + - Return [ void ] } Method [ public method hDel ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $member ] - Parameter #2 [ ...$other_members ] + Parameter #0 [ string $key ] + Parameter #1 [ string $field ] + Parameter #2 [ string ...$other_fields ] } + - Return [ Redis|int|false ] } Method [ public method hExists ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $member ] + Parameter #0 [ string $key ] + Parameter #1 [ string $field ] } + - Return [ Redis|bool ] } Method [ public method hGet ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $member ] + Parameter #0 [ string $key ] + Parameter #1 [ string $member ] } + - Return [ mixed ] } Method [ public method hGetAll ] { - Parameters [1] { - Parameter #0 [ $key ] + Parameter #0 [ string $key ] } + - Return [ Redis|array|false ] } Method [ public method hIncrBy ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $member ] - Parameter #2 [ $value ] + Parameter #0 [ string $key ] + Parameter #1 [ string $field ] + Parameter #2 [ int $value ] } + - Return [ Redis|int|false ] } Method [ public method hIncrByFloat ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $member ] - Parameter #2 [ $value ] + Parameter #0 [ string $key ] + Parameter #1 [ string $field ] + Parameter #2 [ float $value ] } + - Return [ Redis|float|false ] } Method [ public method hKeys ] { - Parameters [1] { - Parameter #0 [ $key ] + Parameter #0 [ string $key ] } + - Return [ Redis|array|false ] } Method [ public method hLen ] { - Parameters [1] { - Parameter #0 [ $key ] + Parameter #0 [ string $key ] } + - Return [ Redis|int|false ] } Method [ public method hMget ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ array $keys ] + Parameter #0 [ string $key ] + Parameter #1 [ array $fields ] } + - Return [ Redis|array|false ] } Method [ public method hMset ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ array $pairs ] + Parameter #0 [ string $key ] + Parameter #1 [ array $fieldvals ] } + - Return [ Redis|bool ] + } + + Method [ public method hRandField ] { + + - Parameters [2] { + Parameter #0 [ string $key ] + Parameter #1 [ array $options = null ] + } + - Return [ Redis|array|string ] } Method [ public method hSet ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $member ] - Parameter #2 [ $value ] + Parameter #0 [ string $key ] + Parameter #1 [ string $member ] + Parameter #2 [ mixed $value ] } + - Return [ Redis|int|false ] } Method [ public method hSetNx ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $member ] - Parameter #2 [ $value ] + Parameter #0 [ string $key ] + Parameter #1 [ string $field ] + Parameter #2 [ string $value ] } + - Return [ Redis|bool ] } Method [ public method hStrLen ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $member ] + Parameter #0 [ string $key ] + Parameter #1 [ string $field ] } + - Return [ Redis|int|false ] } Method [ public method hVals ] { - Parameters [1] { - Parameter #0 [ $key ] + Parameter #0 [ string $key ] } + - Return [ Redis|array|false ] } Method [ public method hscan ] { - Parameters [4] { - Parameter #0 [ $str_key ] - Parameter #1 [ &$i_iterator ] - Parameter #2 [ $str_pattern = ] - Parameter #3 [ $i_count = ] + Parameter #0 [ string $key ] + Parameter #1 [ ?int &$iterator ] + Parameter #2 [ ?string $pattern = null ] + Parameter #3 [ int $count = 0 ] } + - Return [ Redis|array|bool ] } Method [ public method incr ] { - - Parameters [1] { - Parameter #0 [ $key ] + - Parameters [2] { + Parameter #0 [ string $key ] + Parameter #1 [ int $by = 1 ] } + - Return [ Redis|int|false ] } Method [ public method incrBy ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $value ] + Parameter #0 [ string $key ] + Parameter #1 [ int $value ] } + - Return [ Redis|int|false ] } Method [ public method incrByFloat ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $value ] + Parameter #0 [ string $key ] + Parameter #1 [ float $value ] } + - Return [ Redis|float|false ] } Method [ public method info ] { - Parameters [1] { - Parameter #0 [ $option = ] + Parameter #0 [ string ...$sections ] } + - Return [ Redis|array|false ] } Method [ public method isConnected ] { - Parameters [0] { } + - Return [ bool ] } Method [ public method keys ] { - Parameters [1] { - Parameter #0 [ $pattern ] + Parameter #0 [ string $pattern ] } } Method [ public method lInsert ] { - Parameters [4] { - Parameter #0 [ $key ] - Parameter #1 [ $position ] - Parameter #2 [ $pivot ] - Parameter #3 [ $value ] + Parameter #0 [ string $key ] + Parameter #1 [ string $pos ] + Parameter #2 [ mixed $pivot ] + Parameter #3 [ mixed $value ] } } Method [ public method lLen ] { - Parameters [1] { - Parameter #0 [ $key ] + Parameter #0 [ string $key ] + } + - Return [ Redis|int|false ] + } + + Method [ public method lMove ] { + + - Parameters [4] { + Parameter #0 [ string $src ] + Parameter #1 [ string $dst ] + Parameter #2 [ string $wherefrom ] + Parameter #3 [ string $whereto ] + } + - Return [ Redis|string|false ] + } + + Method [ public method blmove ] { + + - Parameters [5] { + Parameter #0 [ string $src ] + Parameter #1 [ string $dst ] + Parameter #2 [ string $wherefrom ] + Parameter #3 [ string $whereto ] + Parameter #4 [ float $timeout ] } + - Return [ Redis|string|false ] } Method [ public method lPop ] { - - Parameters [1] { - Parameter #0 [ $key ] + - Parameters [2] { + Parameter #0 [ string $key ] + Parameter #1 [ int $count = 0 ] + } + - Return [ Redis|array|string|bool ] + } + + Method [ public method lPos ] { + + - Parameters [3] { + Parameter #0 [ string $key ] + Parameter #1 [ mixed $value ] + Parameter #2 [ array $options = null ] } + - Return [ Redis|array|int|bool|null ] } Method [ public method lPush ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $value ] + Parameter #0 [ string $key ] + Parameter #1 [ mixed ...$elements ] } + - Return [ Redis|int|false ] + } + + Method [ public method rPush ] { + + - Parameters [2] { + Parameter #0 [ string $key ] + Parameter #1 [ mixed ...$elements ] + } + - Return [ Redis|int|false ] } Method [ public method lPushx ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $value ] + Parameter #0 [ string $key ] + Parameter #1 [ mixed $value ] + } + - Return [ Redis|int|false ] + } + + Method [ public method rPushx ] { + + - Parameters [2] { + Parameter #0 [ string $key ] + Parameter #1 [ mixed $value ] } + - Return [ Redis|int|false ] } Method [ public method lSet ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $index ] - Parameter #2 [ $value ] + Parameter #0 [ string $key ] + Parameter #1 [ int $index ] + Parameter #2 [ mixed $value ] } + - Return [ Redis|bool ] } Method [ public method lastSave ] { - Parameters [0] { } + - Return [ int ] } Method [ public method lindex ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $index ] + Parameter #0 [ string $key ] + Parameter #1 [ int $index ] } + - Return [ mixed ] } Method [ public method lrange ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $start ] - Parameter #2 [ $end ] + Parameter #0 [ string $key ] + Parameter #1 [ int $start ] + Parameter #2 [ int $end ] } + - Return [ Redis|array|false ] } Method [ public method lrem ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $value ] - Parameter #2 [ $count ] + Parameter #0 [ string $key ] + Parameter #1 [ mixed $value ] + Parameter #2 [ int $count = 0 ] } + - Return [ Redis|int|false ] } Method [ public method ltrim ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $start ] - Parameter #2 [ $stop ] + Parameter #0 [ string $key ] + Parameter #1 [ int $start ] + Parameter #2 [ int $end ] } + - Return [ Redis|bool ] } Method [ public method mget ] { @@ -938,1207 +1312,1251 @@ Extension [ extension #117 redis version 5.3.7 ] { - Parameters [1] { Parameter #0 [ array $keys ] } + - Return [ Redis|array ] } Method [ public method migrate ] { - - Parameters [7] { - Parameter #0 [ $host ] - Parameter #1 [ $port ] - Parameter #2 [ $key ] - Parameter #3 [ $db ] - Parameter #4 [ $timeout ] - Parameter #5 [ $copy = ] - Parameter #6 [ $replace = ] + - Parameters [8] { + Parameter #0 [ string $host ] + Parameter #1 [ int $port ] + Parameter #2 [ array|string $key ] + Parameter #3 [ int $dstdb ] + Parameter #4 [ int $timeout ] + Parameter #5 [ bool $copy = false ] + Parameter #6 [ bool $replace = false ] + Parameter #7 [ mixed $credentials = NULL ] } + - Return [ Redis|bool ] } Method [ public method move ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $dbindex ] + Parameter #0 [ string $key ] + Parameter #1 [ int $index ] } + - Return [ Redis|bool ] } Method [ public method mset ] { - Parameters [1] { - Parameter #0 [ array $pairs ] + Parameter #0 [ array $key_values ] } + - Return [ Redis|bool ] } Method [ public method msetnx ] { - Parameters [1] { - Parameter #0 [ array $pairs ] + Parameter #0 [ array $key_values ] } + - Return [ Redis|bool ] } Method [ public method multi ] { - Parameters [1] { - Parameter #0 [ $mode = ] + Parameter #0 [ int $value = Redis::MULTI ] } + - Return [ Redis|bool ] } Method [ public method object ] { - Parameters [2] { - Parameter #0 [ $field ] - Parameter #1 [ $key ] + Parameter #0 [ string $subcommand ] + Parameter #1 [ string $key ] } + - Return [ Redis|string|int|false ] + } + + Method [ public method open ] { + + - Parameters [7] { + Parameter #0 [ string $host ] + Parameter #1 [ int $port = 6379 ] + Parameter #2 [ float $timeout = 0 ] + Parameter #3 [ string $persistent_id = NULL ] + Parameter #4 [ int $retry_interval = 0 ] + Parameter #5 [ float $read_timeout = 0 ] + Parameter #6 [ array $context = NULL ] + } + - Return [ bool ] } Method [ public method pconnect ] { - - Parameters [3] { - Parameter #0 [ $host ] - Parameter #1 [ $port = ] - Parameter #2 [ $timeout = ] + - Parameters [7] { + Parameter #0 [ string $host ] + Parameter #1 [ int $port = 6379 ] + Parameter #2 [ float $timeout = 0 ] + Parameter #3 [ string $persistent_id = NULL ] + Parameter #4 [ int $retry_interval = 0 ] + Parameter #5 [ float $read_timeout = 0 ] + Parameter #6 [ array $context = NULL ] } + - Return [ bool ] } Method [ public method persist ] { - Parameters [1] { - Parameter #0 [ $key ] + Parameter #0 [ string $key ] } + - Return [ Redis|bool ] } Method [ public method pexpire ] { - - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $timestamp ] + - Parameters [3] { + Parameter #0 [ string $key ] + Parameter #1 [ int $timeout ] + Parameter #2 [ ?string $mode = NULL ] } + - Return [ bool ] } Method [ public method pexpireAt ] { - - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $timestamp ] + - Parameters [3] { + Parameter #0 [ string $key ] + Parameter #1 [ int $timestamp ] + Parameter #2 [ ?string $mode = NULL ] } + - Return [ Redis|bool ] } Method [ public method pfadd ] { - Parameters [2] { - Parameter #0 [ $key ] + Parameter #0 [ string $key ] Parameter #1 [ array $elements ] } + - Return [ Redis|int ] } Method [ public method pfcount ] { - Parameters [1] { - Parameter #0 [ $key ] + Parameter #0 [ array|string $key_or_keys ] } + - Return [ Redis|int|false ] } Method [ public method pfmerge ] { - Parameters [2] { - Parameter #0 [ $dstkey ] - Parameter #1 [ array $keys ] + Parameter #0 [ string $dst ] + Parameter #1 [ array $srckeys ] } + - Return [ Redis|bool ] } Method [ public method ping ] { - - Parameters [0] { + - Parameters [1] { + Parameter #0 [ string $message = NULL ] } + - Return [ Redis|string|bool ] } Method [ public method pipeline ] { - Parameters [0] { } + - Return [ Redis|bool ] + } + + Method [ public method popen ] { + + - Parameters [7] { + Parameter #0 [ string $host ] + Parameter #1 [ int $port = 6379 ] + Parameter #2 [ float $timeout = 0 ] + Parameter #3 [ string $persistent_id = NULL ] + Parameter #4 [ int $retry_interval = 0 ] + Parameter #5 [ float $read_timeout = 0 ] + Parameter #6 [ array $context = NULL ] + } + - Return [ bool ] } Method [ public method psetex ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $expire ] - Parameter #2 [ $value ] + Parameter #0 [ string $key ] + Parameter #1 [ int $expire ] + Parameter #2 [ mixed $value ] } + - Return [ Redis|bool ] } Method [ public method psubscribe ] { - Parameters [2] { Parameter #0 [ array $patterns ] - Parameter #1 [ $callback ] + Parameter #1 [ callable $cb ] } + - Return [ bool ] } Method [ public method pttl ] { - Parameters [1] { - Parameter #0 [ $key ] + Parameter #0 [ string $key ] } + - Return [ Redis|int|false ] } Method [ public method publish ] { - Parameters [2] { - Parameter #0 [ $channel ] - Parameter #1 [ $message ] + Parameter #0 [ string $channel ] + Parameter #1 [ string $message ] } + - Return [ Redis|int|false ] } Method [ public method pubsub ] { - Parameters [2] { - Parameter #0 [ $cmd ] - Parameter #1 [ ...$args ] + Parameter #0 [ string $command ] + Parameter #1 [ mixed $arg = null ] } + - Return [ mixed ] } Method [ public method punsubscribe ] { - - Parameters [2] { - Parameter #0 [ $pattern ] - Parameter #1 [ ...$other_patterns ] - } - } - - Method [ public method rPop ] { - - Parameters [1] { - Parameter #0 [ $key ] - } - } - - Method [ public method rPush ] { - - - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $value ] + Parameter #0 [ array $patterns ] } + - Return [ Redis|array|bool ] } - Method [ public method rPushx ] { + Method [ public method rPop ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $value ] + Parameter #0 [ string $key ] + Parameter #1 [ int $count = 0 ] } + - Return [ Redis|array|string|bool ] } Method [ public method randomKey ] { - Parameters [0] { } + - Return [ Redis|string|false ] } Method [ public method rawcommand ] { - Parameters [2] { - Parameter #0 [ $cmd ] - Parameter #1 [ ...$args ] + Parameter #0 [ string $command ] + Parameter #1 [ mixed ...$args ] } + - Return [ mixed ] } Method [ public method rename ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $newkey ] + Parameter #0 [ string $old_name ] + Parameter #1 [ string $new_name ] } + - Return [ Redis|bool ] } Method [ public method renameNx ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $newkey ] + Parameter #0 [ string $key_src ] + Parameter #1 [ string $key_dst ] + } + - Return [ Redis|bool ] + } + + Method [ public method reset ] { + + - Parameters [0] { } + - Return [ Redis|bool ] } Method [ public method restore ] { - - Parameters [3] { - Parameter #0 [ $ttl ] - Parameter #1 [ $key ] - Parameter #2 [ $value ] + - Parameters [4] { + Parameter #0 [ string $key ] + Parameter #1 [ int $ttl ] + Parameter #2 [ string $value ] + Parameter #3 [ ?array $options = NULL ] } + - Return [ Redis|bool ] } Method [ public method role ] { - Parameters [0] { } + - Return [ mixed ] } Method [ public method rpoplpush ] { - Parameters [2] { - Parameter #0 [ $src ] - Parameter #1 [ $dst ] + Parameter #0 [ string $srckey ] + Parameter #1 [ string $dstkey ] } + - Return [ Redis|string|false ] } Method [ public method sAdd ] { - - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $value ] + - Parameters [3] { + Parameter #0 [ string $key ] + Parameter #1 [ mixed $value ] + Parameter #2 [ mixed ...$other_values ] } + - Return [ Redis|int|false ] } Method [ public method sAddArray ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ array $options ] + Parameter #0 [ string $key ] + Parameter #1 [ array $values ] } + - Return [ int ] } Method [ public method sDiff ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ ...$other_keys ] + Parameter #0 [ string $key ] + Parameter #1 [ string ...$other_keys ] } + - Return [ Redis|array|false ] } Method [ public method sDiffStore ] { - Parameters [3] { - Parameter #0 [ $dst ] - Parameter #1 [ $key ] - Parameter #2 [ ...$other_keys ] + Parameter #0 [ string $dst ] + Parameter #1 [ string $key ] + Parameter #2 [ string ...$other_keys ] } + - Return [ Redis|int|false ] } Method [ public method sInter ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ ...$other_keys ] + Parameter #0 [ array|string $key ] + Parameter #1 [ string ...$other_keys ] + } + - Return [ Redis|array|false ] + } + + Method [ public method sintercard ] { + + - Parameters [2] { + Parameter #0 [ array $keys ] + Parameter #1 [ int $limit = -1 ] } + - Return [ Redis|int|false ] } Method [ public method sInterStore ] { - - Parameters [3] { - Parameter #0 [ $dst ] - Parameter #1 [ $key ] - Parameter #2 [ ...$other_keys ] + - Parameters [2] { + Parameter #0 [ array|string $key ] + Parameter #1 [ string ...$other_keys ] } + - Return [ Redis|int|false ] } Method [ public method sMembers ] { - Parameters [1] { - Parameter #0 [ $key ] + Parameter #0 [ string $key ] } + - Return [ Redis|array|false ] } Method [ public method sMisMember ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $member ] - Parameter #2 [ ...$other_members ] + Parameter #0 [ string $key ] + Parameter #1 [ string $member ] + Parameter #2 [ string ...$other_members ] } + - Return [ Redis|array|false ] } Method [ public method sMove ] { - Parameters [3] { - Parameter #0 [ $src ] - Parameter #1 [ $dst ] - Parameter #2 [ $value ] + Parameter #0 [ string $src ] + Parameter #1 [ string $dst ] + Parameter #2 [ mixed $value ] } + - Return [ Redis|bool ] } Method [ public method sPop ] { - - Parameters [1] { - Parameter #0 [ $key ] + - Parameters [2] { + Parameter #0 [ string $key ] + Parameter #1 [ int $count = 0 ] } + - Return [ Redis|array|string|false ] } Method [ public method sRandMember ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $count = ] + Parameter #0 [ string $key ] + Parameter #1 [ int $count = 0 ] } + - Return [ Redis|array|string|false ] } Method [ public method sUnion ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ ...$other_keys ] + Parameter #0 [ string $key ] + Parameter #1 [ string ...$other_keys ] } + - Return [ Redis|array|false ] } Method [ public method sUnionStore ] { - Parameters [3] { - Parameter #0 [ $dst ] - Parameter #1 [ $key ] - Parameter #2 [ ...$other_keys ] + Parameter #0 [ string $dst ] + Parameter #1 [ string $key ] + Parameter #2 [ string ...$other_keys ] } + - Return [ Redis|int|false ] } Method [ public method save ] { - Parameters [0] { } + - Return [ Redis|bool ] } Method [ public method scan ] { - - Parameters [3] { - Parameter #0 [ &$i_iterator ] - Parameter #1 [ $str_pattern = ] - Parameter #2 [ $i_count = ] + - Parameters [4] { + Parameter #0 [ ?int &$iterator ] + Parameter #1 [ ?string $pattern = null ] + Parameter #2 [ int $count = 0 ] + Parameter #3 [ string $type = NULL ] } + - Return [ array|false ] } Method [ public method scard ] { - Parameters [1] { - Parameter #0 [ $key ] + Parameter #0 [ string $key ] } + - Return [ Redis|int|false ] } Method [ public method script ] { - Parameters [2] { - Parameter #0 [ $cmd ] - Parameter #1 [ ...$args ] + Parameter #0 [ string $command ] + Parameter #1 [ mixed ...$args ] } + - Return [ mixed ] } Method [ public method select ] { - Parameters [1] { - Parameter #0 [ $dbindex ] + Parameter #0 [ int $db ] } + - Return [ Redis|bool ] } Method [ public method set ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $value ] - Parameter #2 [ $opts = ] + Parameter #0 [ string $key ] + Parameter #1 [ mixed $value ] + Parameter #2 [ mixed $options = NULL ] } + - Return [ Redis|string|bool ] } Method [ public method setBit ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $offset ] - Parameter #2 [ $value ] + Parameter #0 [ string $key ] + Parameter #1 [ int $idx ] + Parameter #2 [ bool $value ] } + - Return [ Redis|int|false ] } - Method [ public method setOption ] { + Method [ public method setRange ] { - - Parameters [2] { - Parameter #0 [ $option ] - Parameter #1 [ $value ] + - Parameters [3] { + Parameter #0 [ string $key ] + Parameter #1 [ int $index ] + Parameter #2 [ string $value ] } + - Return [ Redis|int|false ] } - Method [ public method setRange ] { + Method [ public method setOption ] { - - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $offset ] - Parameter #2 [ $value ] + - Parameters [2] { + Parameter #0 [ int $option ] + Parameter #1 [ mixed $value ] } + - Return [ bool ] } Method [ public method setex ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $expire ] - Parameter #2 [ $value ] + Parameter #0 [ string $key ] + Parameter #1 [ int $expire ] + Parameter #2 [ mixed $value ] } } Method [ public method setnx ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $value ] + Parameter #0 [ string $key ] + Parameter #1 [ mixed $value ] } + - Return [ Redis|bool ] } Method [ public method sismember ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $value ] + Parameter #0 [ string $key ] + Parameter #1 [ mixed $value ] + } + - Return [ Redis|bool ] + } + + Method [ public method slaveof ] { + + - Parameters [2] { + Parameter #0 [ string $host = NULL ] + Parameter #1 [ int $port = 6379 ] + } + - Return [ Redis|bool ] + } + + Method [ public method replicaof ] { + + - Parameters [2] { + Parameter #0 [ string $host = NULL ] + Parameter #1 [ int $port = 6379 ] } + - Return [ Redis|bool ] } - Method [ public method slaveof ] { + Method [ public method touch ] { - Parameters [2] { - Parameter #0 [ $host = ] - Parameter #1 [ $port = ] + Parameter #0 [ array|string $key_or_array ] + Parameter #1 [ string ...$more_keys ] } + - Return [ Redis|int|false ] } Method [ public method slowlog ] { - Parameters [2] { - Parameter #0 [ $arg ] - Parameter #1 [ $option = ] + Parameter #0 [ string $operation ] + Parameter #1 [ int $length = 0 ] } + - Return [ mixed ] } Method [ public method sort ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ array $options = ] + Parameter #0 [ string $key ] + Parameter #1 [ ?array $options = null ] } + - Return [ mixed ] + } + + Method [ public method sort_ro ] { + + - Parameters [2] { + Parameter #0 [ string $key ] + Parameter #1 [ ?array $options = null ] + } + - Return [ mixed ] } Method [ public method sortAsc ] { - Parameters [6] { - Parameter #0 [ $key ] - Parameter #1 [ $pattern = ] - Parameter #2 [ $get = ] - Parameter #3 [ $start = ] - Parameter #4 [ $end = ] - Parameter #5 [ $getList = ] + Parameter #0 [ string $key ] + Parameter #1 [ ?string $pattern = null ] + Parameter #2 [ mixed $get = null ] + Parameter #3 [ int $offset = -1 ] + Parameter #4 [ int $count = -1 ] + Parameter #5 [ ?string $store = null ] } + - Return [ array ] } Method [ public method sortAscAlpha ] { - Parameters [6] { - Parameter #0 [ $key ] - Parameter #1 [ $pattern = ] - Parameter #2 [ $get = ] - Parameter #3 [ $start = ] - Parameter #4 [ $end = ] - Parameter #5 [ $getList = ] + Parameter #0 [ string $key ] + Parameter #1 [ ?string $pattern = null ] + Parameter #2 [ mixed $get = null ] + Parameter #3 [ int $offset = -1 ] + Parameter #4 [ int $count = -1 ] + Parameter #5 [ ?string $store = null ] } + - Return [ array ] } Method [ public method sortDesc ] { - Parameters [6] { - Parameter #0 [ $key ] - Parameter #1 [ $pattern = ] - Parameter #2 [ $get = ] - Parameter #3 [ $start = ] - Parameter #4 [ $end = ] - Parameter #5 [ $getList = ] + Parameter #0 [ string $key ] + Parameter #1 [ ?string $pattern = null ] + Parameter #2 [ mixed $get = null ] + Parameter #3 [ int $offset = -1 ] + Parameter #4 [ int $count = -1 ] + Parameter #5 [ ?string $store = null ] } + - Return [ array ] } Method [ public method sortDescAlpha ] { - Parameters [6] { - Parameter #0 [ $key ] - Parameter #1 [ $pattern = ] - Parameter #2 [ $get = ] - Parameter #3 [ $start = ] - Parameter #4 [ $end = ] - Parameter #5 [ $getList = ] + Parameter #0 [ string $key ] + Parameter #1 [ ?string $pattern = null ] + Parameter #2 [ mixed $get = null ] + Parameter #3 [ int $offset = -1 ] + Parameter #4 [ int $count = -1 ] + Parameter #5 [ ?string $store = null ] } + - Return [ array ] } Method [ public method srem ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $member ] - Parameter #2 [ ...$other_members ] + Parameter #0 [ string $key ] + Parameter #1 [ mixed $value ] + Parameter #2 [ mixed ...$other_values ] } + - Return [ Redis|int|false ] } Method [ public method sscan ] { - Parameters [4] { - Parameter #0 [ $str_key ] - Parameter #1 [ &$i_iterator ] - Parameter #2 [ $str_pattern = ] - Parameter #3 [ $i_count = ] + Parameter #0 [ string $key ] + Parameter #1 [ ?int &$iterator ] + Parameter #2 [ ?string $pattern = null ] + Parameter #3 [ int $count = 0 ] + } + - Return [ array|false ] + } + + Method [ public method ssubscribe ] { + + - Parameters [2] { + Parameter #0 [ array $channels ] + Parameter #1 [ callable $cb ] } + - Return [ bool ] } Method [ public method strlen ] { - Parameters [1] { - Parameter #0 [ $key ] + Parameter #0 [ string $key ] } + - Return [ Redis|int|false ] } Method [ public method subscribe ] { - Parameters [2] { Parameter #0 [ array $channels ] - Parameter #1 [ $callback ] + Parameter #1 [ callable $cb ] + } + - Return [ bool ] + } + + Method [ public method sunsubscribe ] { + + - Parameters [1] { + Parameter #0 [ array $channels ] } + - Return [ Redis|array|bool ] } Method [ public method swapdb ] { - Parameters [2] { - Parameter #0 [ $srcdb ] - Parameter #1 [ $dstdb ] + Parameter #0 [ int $src ] + Parameter #1 [ int $dst ] } + - Return [ Redis|bool ] } Method [ public method time ] { - Parameters [0] { } + - Return [ Redis|array ] } Method [ public method ttl ] { - Parameters [1] { - Parameter #0 [ $key ] + Parameter #0 [ string $key ] } + - Return [ Redis|int|false ] } Method [ public method type ] { - Parameters [1] { - Parameter #0 [ $key ] + Parameter #0 [ string $key ] } + - Return [ Redis|int|false ] } Method [ public method unlink ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ ...$other_keys ] + Parameter #0 [ array|string $key ] + Parameter #1 [ string ...$other_keys ] } + - Return [ Redis|int|false ] } Method [ public method unsubscribe ] { - - Parameters [2] { - Parameter #0 [ $channel ] - Parameter #1 [ ...$other_channels ] + - Parameters [1] { + Parameter #0 [ array $channels ] } + - Return [ Redis|array|bool ] } Method [ public method unwatch ] { - Parameters [0] { } + - Return [ Redis|bool ] } - Method [ public method wait ] { + Method [ public method watch ] { - Parameters [2] { - Parameter #0 [ $numslaves ] - Parameter #1 [ $timeout ] + Parameter #0 [ array|string $key ] + Parameter #1 [ string ...$other_keys ] } + - Return [ Redis|bool ] } - Method [ public method watch ] { + Method [ public method wait ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ ...$other_keys ] + Parameter #0 [ int $numreplicas ] + Parameter #1 [ int $timeout ] } + - Return [ int|false ] } Method [ public method xack ] { - Parameters [3] { - Parameter #0 [ $str_key ] - Parameter #1 [ $str_group ] - Parameter #2 [ array $arr_ids ] + Parameter #0 [ string $key ] + Parameter #1 [ string $group ] + Parameter #2 [ array $ids ] } + - Return [ int|false ] } Method [ public method xadd ] { - - Parameters [5] { - Parameter #0 [ $str_key ] - Parameter #1 [ $str_id ] - Parameter #2 [ array $arr_fields ] - Parameter #3 [ $i_maxlen = ] - Parameter #4 [ $boo_approximate = ] + - Parameters [6] { + Parameter #0 [ string $key ] + Parameter #1 [ string $id ] + Parameter #2 [ array $values ] + Parameter #3 [ int $maxlen = 0 ] + Parameter #4 [ bool $approx = false ] + Parameter #5 [ bool $nomkstream = false ] } + - Return [ Redis|string|false ] + } + + Method [ public method xautoclaim ] { + + - Parameters [7] { + Parameter #0 [ string $key ] + Parameter #1 [ string $group ] + Parameter #2 [ string $consumer ] + Parameter #3 [ int $min_idle ] + Parameter #4 [ string $start ] + Parameter #5 [ int $count = -1 ] + Parameter #6 [ bool $justid = false ] + } + - Return [ Redis|array|bool ] } Method [ public method xclaim ] { - Parameters [6] { - Parameter #0 [ $str_key ] - Parameter #1 [ $str_group ] - Parameter #2 [ $str_consumer ] - Parameter #3 [ $i_min_idle ] - Parameter #4 [ array $arr_ids ] - Parameter #5 [ array $arr_opts = ] + Parameter #0 [ string $key ] + Parameter #1 [ string $group ] + Parameter #2 [ string $consumer ] + Parameter #3 [ int $min_idle ] + Parameter #4 [ array $ids ] + Parameter #5 [ array $options ] } + - Return [ Redis|array|bool ] } Method [ public method xdel ] { - Parameters [2] { - Parameter #0 [ $str_key ] - Parameter #1 [ array $arr_ids ] + Parameter #0 [ string $key ] + Parameter #1 [ array $ids ] } + - Return [ Redis|int|false ] } Method [ public method xgroup ] { - - Parameters [5] { - Parameter #0 [ $str_operation ] - Parameter #1 [ $str_key = ] - Parameter #2 [ $str_arg1 = ] - Parameter #3 [ $str_arg2 = ] - Parameter #4 [ $str_arg3 = ] + - Parameters [6] { + Parameter #0 [ string $operation ] + Parameter #1 [ string $key = null ] + Parameter #2 [ string $group = null ] + Parameter #3 [ string $id_or_consumer = null ] + Parameter #4 [ bool $mkstream = false ] + Parameter #5 [ int $entries_read = -2 ] } + - Return [ mixed ] } Method [ public method xinfo ] { - - Parameters [3] { - Parameter #0 [ $str_cmd ] - Parameter #1 [ $str_key = ] - Parameter #2 [ $str_group = ] + - Parameters [4] { + Parameter #0 [ string $operation ] + Parameter #1 [ ?string $arg1 = null ] + Parameter #2 [ ?string $arg2 = null ] + Parameter #3 [ int $count = -1 ] } + - Return [ mixed ] } Method [ public method xlen ] { - Parameters [1] { - Parameter #0 [ $key ] + Parameter #0 [ string $key ] } + - Return [ Redis|int|false ] } Method [ public method xpending ] { - Parameters [6] { - Parameter #0 [ $str_key ] - Parameter #1 [ $str_group ] - Parameter #2 [ $str_start = ] - Parameter #3 [ $str_end = ] - Parameter #4 [ $i_count = ] - Parameter #5 [ $str_consumer = ] + Parameter #0 [ string $key ] + Parameter #1 [ string $group ] + Parameter #2 [ ?string $start = null ] + Parameter #3 [ ?string $end = null ] + Parameter #4 [ int $count = -1 ] + Parameter #5 [ ?string $consumer = null ] } + - Return [ Redis|array|false ] } Method [ public method xrange ] { - Parameters [4] { - Parameter #0 [ $str_key ] - Parameter #1 [ $str_start ] - Parameter #2 [ $str_end ] - Parameter #3 [ $i_count = ] + Parameter #0 [ string $key ] + Parameter #1 [ string $start ] + Parameter #2 [ string $end ] + Parameter #3 [ int $count = -1 ] } + - Return [ Redis|array|bool ] } Method [ public method xread ] { - Parameters [3] { - Parameter #0 [ array $arr_streams ] - Parameter #1 [ $i_count = ] - Parameter #2 [ $i_block = ] + Parameter #0 [ array $streams ] + Parameter #1 [ int $count = -1 ] + Parameter #2 [ int $block = -1 ] } + - Return [ Redis|array|bool ] } Method [ public method xreadgroup ] { - Parameters [5] { - Parameter #0 [ $str_group ] - Parameter #1 [ $str_consumer ] - Parameter #2 [ array $arr_streams ] - Parameter #3 [ $i_count = ] - Parameter #4 [ $i_block = ] + Parameter #0 [ string $group ] + Parameter #1 [ string $consumer ] + Parameter #2 [ array $streams ] + Parameter #3 [ int $count = 1 ] + Parameter #4 [ int $block = 1 ] } + - Return [ Redis|array|bool ] } Method [ public method xrevrange ] { - Parameters [4] { - Parameter #0 [ $str_key ] - Parameter #1 [ $str_start ] - Parameter #2 [ $str_end ] - Parameter #3 [ $i_count = ] + Parameter #0 [ string $key ] + Parameter #1 [ string $end ] + Parameter #2 [ string $start ] + Parameter #3 [ int $count = -1 ] } + - Return [ Redis|array|bool ] } Method [ public method xtrim ] { - - Parameters [3] { - Parameter #0 [ $str_key ] - Parameter #1 [ $i_maxlen ] - Parameter #2 [ $boo_approximate = ] + - Parameters [5] { + Parameter #0 [ string $key ] + Parameter #1 [ string $threshold ] + Parameter #2 [ bool $approx = false ] + Parameter #3 [ bool $minid = false ] + Parameter #4 [ int $limit = -1 ] } + - Return [ Redis|int|false ] } Method [ public method zAdd ] { - - Parameters [4] { - Parameter #0 [ $key ] - Parameter #1 [ $score ] - Parameter #2 [ $value ] - Parameter #3 [ ...$extra_args ] + - Parameters [3] { + Parameter #0 [ string $key ] + Parameter #1 [ array|float $score_or_options ] + Parameter #2 [ mixed ...$more_scores_and_mems ] } + - Return [ Redis|int|float|false ] } Method [ public method zCard ] { - Parameters [1] { - Parameter #0 [ $key ] + Parameter #0 [ string $key ] } + - Return [ Redis|int|false ] } Method [ public method zCount ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $min ] - Parameter #2 [ $max ] + Parameter #0 [ string $key ] + Parameter #1 [ string $start ] + Parameter #2 [ string $end ] } + - Return [ Redis|int|false ] } Method [ public method zIncrBy ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $value ] - Parameter #2 [ $member ] + Parameter #0 [ string $key ] + Parameter #1 [ float $value ] + Parameter #2 [ mixed $member ] } + - Return [ Redis|float|false ] } Method [ public method zLexCount ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $min ] - Parameter #2 [ $max ] + Parameter #0 [ string $key ] + Parameter #1 [ string $min ] + Parameter #2 [ string $max ] + } + - Return [ Redis|int|false ] + } + + Method [ public method zMscore ] { + + - Parameters [3] { + Parameter #0 [ string $key ] + Parameter #1 [ mixed $member ] + Parameter #2 [ mixed ...$other_members ] } + - Return [ Redis|array|false ] } Method [ public method zPopMax ] { - - Parameters [1] { - Parameter #0 [ $key ] + - Parameters [2] { + Parameter #0 [ string $key ] + Parameter #1 [ int $count = null ] } + - Return [ Redis|array|false ] } Method [ public method zPopMin ] { - - Parameters [1] { - Parameter #0 [ $key ] + - Parameters [2] { + Parameter #0 [ string $key ] + Parameter #1 [ int $count = null ] } + - Return [ Redis|array|false ] } Method [ public method zRange ] { - Parameters [4] { - Parameter #0 [ $key ] - Parameter #1 [ $start ] - Parameter #2 [ $end ] - Parameter #3 [ $scores = ] + Parameter #0 [ string $key ] + Parameter #1 [ string|int $start ] + Parameter #2 [ string|int $end ] + Parameter #3 [ array|bool|null $options = null ] } + - Return [ Redis|array|false ] } Method [ public method zRangeByLex ] { - Parameters [5] { - Parameter #0 [ $key ] - Parameter #1 [ $min ] - Parameter #2 [ $max ] - Parameter #3 [ $offset = ] - Parameter #4 [ $limit = ] + Parameter #0 [ string $key ] + Parameter #1 [ string $min ] + Parameter #2 [ string $max ] + Parameter #3 [ int $offset = -1 ] + Parameter #4 [ int $count = -1 ] } + - Return [ Redis|array|false ] } Method [ public method zRangeByScore ] { - Parameters [4] { - Parameter #0 [ $key ] - Parameter #1 [ $start ] - Parameter #2 [ $end ] - Parameter #3 [ array $options = ] + Parameter #0 [ string $key ] + Parameter #1 [ string $start ] + Parameter #2 [ string $end ] + Parameter #3 [ array $options = [] ] + } + - Return [ Redis|array|false ] + } + + Method [ public method zrangestore ] { + + - Parameters [5] { + Parameter #0 [ string $dstkey ] + Parameter #1 [ string $srckey ] + Parameter #2 [ string $start ] + Parameter #3 [ string $end ] + Parameter #4 [ array|bool|null $options = NULL ] + } + - Return [ Redis|int|false ] + } + + Method [ public method zRandMember ] { + + - Parameters [2] { + Parameter #0 [ string $key ] + Parameter #1 [ array $options = null ] } + - Return [ Redis|array|string ] } Method [ public method zRank ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $member ] + Parameter #0 [ string $key ] + Parameter #1 [ mixed $member ] } + - Return [ Redis|int|false ] } Method [ public method zRem ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $member ] - Parameter #2 [ ...$other_members ] + Parameter #0 [ mixed $key ] + Parameter #1 [ mixed $member ] + Parameter #2 [ mixed ...$other_members ] } + - Return [ Redis|int|false ] } Method [ public method zRemRangeByLex ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $min ] - Parameter #2 [ $max ] + Parameter #0 [ string $key ] + Parameter #1 [ string $min ] + Parameter #2 [ string $max ] } + - Return [ Redis|int|false ] } Method [ public method zRemRangeByRank ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $start ] - Parameter #2 [ $end ] + Parameter #0 [ string $key ] + Parameter #1 [ int $start ] + Parameter #2 [ int $end ] } + - Return [ Redis|int|false ] } Method [ public method zRemRangeByScore ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $min ] - Parameter #2 [ $max ] + Parameter #0 [ string $key ] + Parameter #1 [ string $start ] + Parameter #2 [ string $end ] } + - Return [ Redis|int|false ] } Method [ public method zRevRange ] { - Parameters [4] { - Parameter #0 [ $key ] - Parameter #1 [ $start ] - Parameter #2 [ $end ] - Parameter #3 [ $scores = ] + Parameter #0 [ string $key ] + Parameter #1 [ int $start ] + Parameter #2 [ int $end ] + Parameter #3 [ mixed $scores = null ] } + - Return [ Redis|array|false ] } Method [ public method zRevRangeByLex ] { - Parameters [5] { - Parameter #0 [ $key ] - Parameter #1 [ $min ] - Parameter #2 [ $max ] - Parameter #3 [ $offset = ] - Parameter #4 [ $limit = ] + Parameter #0 [ string $key ] + Parameter #1 [ string $max ] + Parameter #2 [ string $min ] + Parameter #3 [ int $offset = -1 ] + Parameter #4 [ int $count = -1 ] } + - Return [ Redis|array|false ] } Method [ public method zRevRangeByScore ] { - Parameters [4] { - Parameter #0 [ $key ] - Parameter #1 [ $start ] - Parameter #2 [ $end ] - Parameter #3 [ array $options = ] + Parameter #0 [ string $key ] + Parameter #1 [ string $max ] + Parameter #2 [ string $min ] + Parameter #3 [ array|bool $options = [] ] } + - Return [ Redis|array|false ] } Method [ public method zRevRank ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $member ] + Parameter #0 [ string $key ] + Parameter #1 [ mixed $member ] } + - Return [ Redis|int|false ] } Method [ public method zScore ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $member ] - } - } - - Method [ public method zinterstore ] { - - - Parameters [4] { - Parameter #0 [ $key ] - Parameter #1 [ array $keys ] - Parameter #2 [ ?array $weights = ] - Parameter #3 [ $aggregate = ] + Parameter #0 [ string $key ] + Parameter #1 [ mixed $member ] } + - Return [ Redis|float|false ] } - Method [ public method zscan ] { - - - Parameters [4] { - Parameter #0 [ $str_key ] - Parameter #1 [ &$i_iterator ] - Parameter #2 [ $str_pattern = ] - Parameter #3 [ $i_count = ] - } - } - - Method [ public method zunionstore ] { - - - Parameters [4] { - Parameter #0 [ $key ] - Parameter #1 [ array $keys ] - Parameter #2 [ ?array $weights = ] - Parameter #3 [ $aggregate = ] - } - } - - Method [ public method delete ] { + Method [ public method zdiff ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ ...$other_keys ] - } - } - - Method [ public method evaluate ] { - - - Parameters [3] { - Parameter #0 [ $script ] - Parameter #1 [ $args = ] - Parameter #2 [ $num_keys = ] - } - } - - Method [ public method evaluateSha ] { - - - Parameters [3] { - Parameter #0 [ $script_sha ] - Parameter #1 [ $args = ] - Parameter #2 [ $num_keys = ] - } - } - - Method [ public method getKeys ] { - - - Parameters [1] { - Parameter #0 [ $pattern ] - } - } - - Method [ public method getMultiple ] { - - - Parameters [1] { Parameter #0 [ array $keys ] + Parameter #1 [ array $options = null ] } + - Return [ Redis|array|false ] } - Method [ public method lGet ] { + Method [ public method zdiffstore ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $index ] - } - } - - Method [ public method lGetRange ] { - - - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $start ] - Parameter #2 [ $end ] - } - } - - Method [ public method lRemove ] { - - - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $value ] - Parameter #2 [ $count ] - } - } - - Method [ public method lSize ] { - - - Parameters [1] { - Parameter #0 [ $key ] - } - } - - Method [ public method listTrim ] { - - - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $start ] - Parameter #2 [ $stop ] - } - } - - Method [ public method open ] { - - - Parameters [4] { - Parameter #0 [ $host ] - Parameter #1 [ $port = ] - Parameter #2 [ $timeout = ] - Parameter #3 [ $retry_interval = ] - } - } - - Method [ public method popen ] { - - - Parameters [3] { - Parameter #0 [ $host ] - Parameter #1 [ $port = ] - Parameter #2 [ $timeout = ] - } - } - - Method [ public method renameKey ] { - - - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $newkey ] - } - } - - Method [ public method sContains ] { - - - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $value ] - } - } - - Method [ public method sGetMembers ] { - - - Parameters [1] { - Parameter #0 [ $key ] + Parameter #0 [ string $dst ] + Parameter #1 [ array $keys ] } + - Return [ Redis|int|false ] } - Method [ public method sRemove ] { + Method [ public method zinter ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $member ] - Parameter #2 [ ...$other_members ] - } - } - - Method [ public method sSize ] { - - - Parameters [1] { - Parameter #0 [ $key ] - } - } - - Method [ public method sendEcho ] { - - - Parameters [1] { - Parameter #0 [ $msg ] + Parameter #0 [ array $keys ] + Parameter #1 [ ?array $weights = null ] + Parameter #2 [ ?array $options = null ] } + - Return [ Redis|array|false ] } - Method [ public method setTimeout ] { + Method [ public method zintercard ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $timeout ] - } - } - - Method [ public method substr ] { - - - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $start ] - Parameter #2 [ $end ] - } - } - - Method [ public method zDelete ] { - - - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $member ] - Parameter #2 [ ...$other_members ] - } - } - - Method [ public method zDeleteRangeByRank ] { - - - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $min ] - Parameter #2 [ $max ] - } - } - - Method [ public method zDeleteRangeByScore ] { - - - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $min ] - Parameter #2 [ $max ] + Parameter #0 [ array $keys ] + Parameter #1 [ int $limit = -1 ] } + - Return [ Redis|int|false ] } - Method [ public method zInter ] { + Method [ public method zinterstore ] { - Parameters [4] { - Parameter #0 [ $key ] + Parameter #0 [ string $dst ] Parameter #1 [ array $keys ] - Parameter #2 [ ?array $weights = ] - Parameter #3 [ $aggregate = ] + Parameter #2 [ ?array $weights = null ] + Parameter #3 [ ?string $aggregate = null ] } + - Return [ Redis|int|false ] } - Method [ public method zRemove ] { - - - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $member ] - Parameter #2 [ ...$other_members ] - } - } - - Method [ public method zRemoveRangeByScore ] { - - - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $min ] - Parameter #2 [ $max ] - } - } - - Method [ public method zReverseRange ] { + Method [ public method zscan ] { - Parameters [4] { - Parameter #0 [ $key ] - Parameter #1 [ $start ] - Parameter #2 [ $end ] - Parameter #3 [ $scores = ] + Parameter #0 [ string $key ] + Parameter #1 [ ?int &$iterator ] + Parameter #2 [ ?string $pattern = null ] + Parameter #3 [ int $count = 0 ] } + - Return [ Redis|array|false ] } - Method [ public method zSize ] { + Method [ public method zunion ] { - - Parameters [1] { - Parameter #0 [ $key ] + - Parameters [3] { + Parameter #0 [ array $keys ] + Parameter #1 [ ?array $weights = null ] + Parameter #2 [ ?array $options = null ] } + - Return [ Redis|array|false ] } - Method [ public method zUnion ] { + Method [ public method zunionstore ] { - Parameters [4] { - Parameter #0 [ $key ] + Parameter #0 [ string $dst ] Parameter #1 [ array $keys ] - Parameter #2 [ ?array $weights = ] - Parameter #3 [ $aggregate = ] + Parameter #2 [ ?array $weights = NULL ] + Parameter #3 [ ?string $aggregate = NULL ] } + - Return [ Redis|int|false ] } } } @@ -2157,20 +2575,21 @@ Extension [ extension #117 redis version 5.3.7 ] { - Properties [0] { } - - Methods [33] { + - Methods [31] { Method [ public method __call ] { - Parameters [2] { - Parameter #0 [ $function_name ] - Parameter #1 [ $arguments ] + Parameter #0 [ string $function_name ] + Parameter #1 [ array $arguments ] } + - Return [ mixed ] } Method [ public method __construct ] { - Parameters [2] { - Parameter #0 [ $name_or_hosts ] - Parameter #1 [ array $options = ] + Parameter #0 [ array|string $name_or_hosts ] + Parameter #1 [ array $options = NULL ] } } @@ -2178,278 +2597,247 @@ Extension [ extension #117 redis version 5.3.7 ] { - Parameters [0] { } + - Return [ array|bool ] } Method [ public method _distributor ] { - Parameters [0] { } + - Return [ callable|bool ] } Method [ public method _function ] { - Parameters [0] { } + - Return [ callable|bool ] } Method [ public method _hosts ] { - Parameters [0] { } + - Return [ array|bool ] } Method [ public method _instance ] { - Parameters [1] { - Parameter #0 [ $host ] + Parameter #0 [ string $host ] } + - Return [ Redis|bool|null ] } Method [ public method _rehash ] { - Parameters [1] { - Parameter #0 [ $callable = ] + Parameter #0 [ callable $fn = NULL ] } + - Return [ ?bool ] } Method [ public method _target ] { - Parameters [1] { - Parameter #0 [ $key ] + Parameter #0 [ string $key ] } + - Return [ string|bool|null ] } Method [ public method bgsave ] { - Parameters [0] { } + - Return [ array ] } Method [ public method del ] { - - Parameters [1] { - Parameter #0 [ $keys ] + - Parameters [2] { + Parameter #0 [ array|string $key ] + Parameter #1 [ string ...$otherkeys ] } + - Return [ int|bool ] } Method [ public method discard ] { - Parameters [0] { } + - Return [ ?bool ] } Method [ public method exec ] { - Parameters [0] { } + - Return [ ?bool ] } Method [ public method flushall ] { - - Parameters [1] { - Parameter #0 [ $async = ] + - Parameters [0] { } + - Return [ array|bool ] } Method [ public method flushdb ] { - - Parameters [1] { - Parameter #0 [ $async = ] + - Parameters [0] { } + - Return [ array|bool ] } Method [ public method getOption ] { - Parameters [1] { - Parameter #0 [ $opt ] + Parameter #0 [ int $opt ] } + - Return [ array|bool ] } Method [ public method hscan ] { - Parameters [4] { - Parameter #0 [ $str_key ] - Parameter #1 [ &$i_iterator ] - Parameter #2 [ $str_pattern = ] - Parameter #3 [ $i_count = ] + Parameter #0 [ string $key ] + Parameter #1 [ ?int &$iterator ] + Parameter #2 [ ?string $pattern = null ] + Parameter #3 [ int $count = 0 ] } + - Return [ array|bool ] } Method [ public method info ] { - Parameters [0] { } + - Return [ array|bool ] } Method [ public method keys ] { - Parameters [1] { - Parameter #0 [ $pattern ] + Parameter #0 [ string $pattern ] } + - Return [ array|bool ] } Method [ public method mget ] { - Parameters [1] { - Parameter #0 [ $keys ] + Parameter #0 [ array $keys ] } + - Return [ array|bool ] } Method [ public method mset ] { - Parameters [1] { - Parameter #0 [ $pairs ] + Parameter #0 [ array $pairs ] } + - Return [ bool ] } Method [ public method multi ] { - Parameters [2] { - Parameter #0 [ $host ] - Parameter #1 [ $mode = ] + Parameter #0 [ string $host ] + Parameter #1 [ int $mode = NULL ] } + - Return [ RedisArray|bool ] } Method [ public method ping ] { - Parameters [0] { } + - Return [ array|bool ] } Method [ public method save ] { - Parameters [0] { } + - Return [ array|bool ] } Method [ public method scan ] { - Parameters [4] { - Parameter #0 [ &$iterator ] - Parameter #1 [ $node ] - Parameter #2 [ $pattern = ] - Parameter #3 [ $count = ] + Parameter #0 [ ?int &$iterator ] + Parameter #1 [ string $node ] + Parameter #2 [ ?string $pattern = null ] + Parameter #3 [ int $count = 0 ] } + - Return [ array|bool ] } Method [ public method select ] { - Parameters [1] { - Parameter #0 [ $index ] + Parameter #0 [ int $index ] } + - Return [ array|bool ] } Method [ public method setOption ] { - Parameters [2] { - Parameter #0 [ $opt ] - Parameter #1 [ $value ] + Parameter #0 [ int $opt ] + Parameter #1 [ string $value ] } + - Return [ array|bool ] } Method [ public method sscan ] { - Parameters [4] { - Parameter #0 [ $str_key ] - Parameter #1 [ &$i_iterator ] - Parameter #2 [ $str_pattern = ] - Parameter #3 [ $i_count = ] + Parameter #0 [ string $key ] + Parameter #1 [ ?int &$iterator ] + Parameter #2 [ ?string $pattern = null ] + Parameter #3 [ int $count = 0 ] } + - Return [ array|bool ] } Method [ public method unlink ] { - - Parameters [0] { + - Parameters [2] { + Parameter #0 [ array|string $key ] + Parameter #1 [ string ...$otherkeys ] } + - Return [ int|bool ] } Method [ public method unwatch ] { - Parameters [0] { } + - Return [ ?bool ] } Method [ public method zscan ] { - Parameters [4] { - Parameter #0 [ $str_key ] - Parameter #1 [ &$i_iterator ] - Parameter #2 [ $str_pattern = ] - Parameter #3 [ $i_count = ] - } - } - - Method [ public method delete ] { - - - Parameters [1] { - Parameter #0 [ $keys ] - } - } - - Method [ public method getMultiple ] { - - - Parameters [1] { - Parameter #0 [ $keys ] + Parameter #0 [ string $key ] + Parameter #1 [ ?int &$iterator ] + Parameter #2 [ ?string $pattern = null ] + Parameter #3 [ int $count = 0 ] } + - Return [ array|bool ] } } } Class [ class RedisCluster ] { - - Constants [52] { - Constant [ public int REDIS_NOT_FOUND ] { 0 } - Constant [ public int REDIS_STRING ] { 1 } - Constant [ public int REDIS_SET ] { 2 } - Constant [ public int REDIS_LIST ] { 3 } - Constant [ public int REDIS_ZSET ] { 4 } - Constant [ public int REDIS_HASH ] { 5 } - Constant [ public int REDIS_STREAM ] { 6 } - Constant [ public int ATOMIC ] { 0 } - Constant [ public int MULTI ] { 1 } - Constant [ public int OPT_SERIALIZER ] { 1 } - Constant [ public int OPT_PREFIX ] { 2 } - Constant [ public int OPT_READ_TIMEOUT ] { 3 } - Constant [ public int OPT_TCP_KEEPALIVE ] { 6 } - Constant [ public int OPT_COMPRESSION ] { 7 } - Constant [ public int OPT_REPLY_LITERAL ] { 8 } - Constant [ public int OPT_COMPRESSION_LEVEL ] { 9 } - Constant [ public int OPT_NULL_MULTIBULK_AS_NULL ] { 10 } - Constant [ public int SERIALIZER_NONE ] { 0 } - Constant [ public int SERIALIZER_PHP ] { 1 } - Constant [ public int SERIALIZER_IGBINARY ] { 2 } - Constant [ public int SERIALIZER_MSGPACK ] { 3 } - Constant [ public int SERIALIZER_JSON ] { 4 } - Constant [ public int COMPRESSION_NONE ] { 0 } - Constant [ public int COMPRESSION_LZF ] { 1 } - Constant [ public int COMPRESSION_ZSTD ] { 2 } - Constant [ public int COMPRESSION_ZSTD_MIN ] { 1 } - Constant [ public int COMPRESSION_ZSTD_DEFAULT ] { 3 } - Constant [ public int COMPRESSION_ZSTD_MAX ] { 22 } - Constant [ public int COMPRESSION_LZ4 ] { 3 } - Constant [ public int OPT_SCAN ] { 4 } - Constant [ public int SCAN_RETRY ] { 1 } - Constant [ public int SCAN_NORETRY ] { 0 } - Constant [ public int SCAN_PREFIX ] { 2 } - Constant [ public int SCAN_NOPREFIX ] { 3 } - Constant [ public string AFTER ] { after } - Constant [ public string BEFORE ] { before } + - Constants [5] { Constant [ public int OPT_SLAVE_FAILOVER ] { 5 } Constant [ public int FAILOVER_NONE ] { 0 } Constant [ public int FAILOVER_ERROR ] { 1 } Constant [ public int FAILOVER_DISTRIBUTE ] { 2 } Constant [ public int FAILOVER_DISTRIBUTE_SLAVES ] { 3 } - Constant [ public int OPT_MAX_RETRIES ] { 11 } - Constant [ public int OPT_BACKOFF_ALGORITHM ] { 12 } - Constant [ public int BACKOFF_ALGORITHM_DEFAULT ] { 0 } - Constant [ public int BACKOFF_ALGORITHM_CONSTANT ] { 6 } - Constant [ public int BACKOFF_ALGORITHM_UNIFORM ] { 5 } - Constant [ public int BACKOFF_ALGORITHM_EXPONENTIAL ] { 4 } - Constant [ public int BACKOFF_ALGORITHM_FULL_JITTER ] { 2 } - Constant [ public int BACKOFF_ALGORITHM_EQUAL_JITTER ] { 3 } - Constant [ public int BACKOFF_ALGORITHM_DECORRELATED_JITTER ] { 1 } - Constant [ public int OPT_BACKOFF_BASE ] { 13 } - Constant [ public int OPT_BACKOFF_CAP ] { 14 } } - Static properties [0] { @@ -2461,735 +2849,1035 @@ Extension [ extension #117 redis version 5.3.7 ] { - Properties [0] { } - - Methods [190] { + - Methods [222] { Method [ public method __construct ] { - - Parameters [6] { - Parameter #0 [ $name ] - Parameter #1 [ array $seeds = ] - Parameter #2 [ $timeout = ] - Parameter #3 [ $read_timeout = ] - Parameter #4 [ $persistent = ] - Parameter #5 [ $auth = ] + - Parameters [7] { + Parameter #0 [ ?string $name ] + Parameter #1 [ array $seeds = NULL ] + Parameter #2 [ int|float $timeout = 0 ] + Parameter #3 [ int|float $read_timeout = 0 ] + Parameter #4 [ bool $persistent = false ] + Parameter #5 [ mixed $auth = NULL ] + Parameter #6 [ array $context = NULL ] } } - Method [ public method _masters ] { + Method [ public method _compress ] { - - Parameters [0] { + - Parameters [1] { + Parameter #0 [ string $value ] } + - Return [ string ] } - Method [ public method _prefix ] { + Method [ public method _uncompress ] { - Parameters [1] { - Parameter #0 [ $key ] + Parameter #0 [ string $value ] } + - Return [ string ] } - Method [ public method _redir ] { + Method [ public method _serialize ] { - - Parameters [0] { + - Parameters [1] { + Parameter #0 [ mixed $value ] } + - Return [ string|bool ] } - Method [ public method _serialize ] { + Method [ public method _unserialize ] { - Parameters [1] { - Parameter #0 [ $value ] + Parameter #0 [ string $value ] } + - Return [ mixed ] } - Method [ public method _unserialize ] { + Method [ public method _pack ] { - Parameters [1] { - Parameter #0 [ $value ] + Parameter #0 [ mixed $value ] } + - Return [ string ] } - Method [ public method _compress ] { + Method [ public method _unpack ] { - Parameters [1] { - Parameter #0 [ $value ] + Parameter #0 [ string $value ] } + - Return [ mixed ] } - Method [ public method _uncompress ] { + Method [ public method _prefix ] { - Parameters [1] { - Parameter #0 [ $value ] + Parameter #0 [ string $key ] } + - Return [ string|bool ] } - Method [ public method _pack ] { + Method [ public method _masters ] { - - Parameters [1] { - Parameter #0 [ $value ] + - Parameters [0] { } + - Return [ array ] } - Method [ public method _unpack ] { + Method [ public method _redir ] { - - Parameters [1] { - Parameter #0 [ $value ] + - Parameters [0] { } + - Return [ ?string ] } Method [ public method acl ] { - Parameters [3] { - Parameter #0 [ $key_or_address ] - Parameter #1 [ $subcmd ] - Parameter #2 [ ...$args ] + Parameter #0 [ array|string $key_or_address ] + Parameter #1 [ string $subcmd ] + Parameter #2 [ string ...$args ] } + - Return [ mixed ] } Method [ public method append ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $value ] + Parameter #0 [ string $key ] + Parameter #1 [ mixed $value ] } + - Return [ RedisCluster|int|bool ] } Method [ public method bgrewriteaof ] { - Parameters [1] { - Parameter #0 [ $key_or_address ] + Parameter #0 [ array|string $key_or_address ] } + - Return [ RedisCluster|bool ] } Method [ public method bgsave ] { - Parameters [1] { - Parameter #0 [ $key_or_address ] + Parameter #0 [ array|string $key_or_address ] } + - Return [ RedisCluster|bool ] } Method [ public method bitcount ] { - - Parameters [1] { - Parameter #0 [ $key ] + - Parameters [4] { + Parameter #0 [ string $key ] + Parameter #1 [ int $start = 0 ] + Parameter #2 [ int $end = -1 ] + Parameter #3 [ bool $bybit = false ] } + - Return [ RedisCluster|int|bool ] } Method [ public method bitop ] { - Parameters [4] { - Parameter #0 [ $operation ] - Parameter #1 [ $ret_key ] - Parameter #2 [ $key ] - Parameter #3 [ ...$other_keys ] + Parameter #0 [ string $operation ] + Parameter #1 [ string $deskey ] + Parameter #2 [ string $srckey ] + Parameter #3 [ string ...$otherkeys ] } + - Return [ RedisCluster|int|bool ] } Method [ public method bitpos ] { - - Parameters [4] { - Parameter #0 [ $key ] - Parameter #1 [ $bit ] - Parameter #2 [ $start = ] - Parameter #3 [ $end = ] + - Parameters [5] { + Parameter #0 [ string $key ] + Parameter #1 [ bool $bit ] + Parameter #2 [ int $start = 0 ] + Parameter #3 [ int $end = -1 ] + Parameter #4 [ bool $bybit = false ] } + - Return [ RedisCluster|int|false ] } Method [ public method blpop ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $timeout_or_key ] - Parameter #2 [ ...$extra_args ] + Parameter #0 [ array|string $key ] + Parameter #1 [ string|int|float $timeout_or_key ] + Parameter #2 [ mixed ...$extra_args ] } + - Return [ RedisCluster|array|false|null ] } Method [ public method brpop ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $timeout_or_key ] - Parameter #2 [ ...$extra_args ] + Parameter #0 [ array|string $key ] + Parameter #1 [ string|int|float $timeout_or_key ] + Parameter #2 [ mixed ...$extra_args ] } + - Return [ RedisCluster|array|false|null ] } Method [ public method brpoplpush ] { - Parameters [3] { - Parameter #0 [ $src ] - Parameter #1 [ $dst ] - Parameter #2 [ $timeout ] + Parameter #0 [ string $srckey ] + Parameter #1 [ string $deskey ] + Parameter #2 [ int $timeout ] } + - Return [ mixed ] } - Method [ public method clearlasterror ] { + Method [ public method lmove ] { - - Parameters [0] { + - Parameters [4] { + Parameter #0 [ string $src ] + Parameter #1 [ string $dst ] + Parameter #2 [ string $wherefrom ] + Parameter #3 [ string $whereto ] } + - Return [ Redis|string|false ] + } + + Method [ public method blmove ] { + + - Parameters [5] { + Parameter #0 [ string $src ] + Parameter #1 [ string $dst ] + Parameter #2 [ string $wherefrom ] + Parameter #3 [ string $whereto ] + Parameter #4 [ float $timeout ] + } + - Return [ Redis|string|false ] } Method [ public method bzpopmax ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $timeout_or_key ] - Parameter #2 [ ...$extra_args ] + Parameter #0 [ array|string $key ] + Parameter #1 [ string|int $timeout_or_key ] + Parameter #2 [ mixed ...$extra_args ] } + - Return [ array ] } Method [ public method bzpopmin ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $timeout_or_key ] - Parameter #2 [ ...$extra_args ] + Parameter #0 [ array|string $key ] + Parameter #1 [ string|int $timeout_or_key ] + Parameter #2 [ mixed ...$extra_args ] + } + - Return [ array ] + } + + Method [ public method bzmpop ] { + + - Parameters [4] { + Parameter #0 [ float $timeout ] + Parameter #1 [ array $keys ] + Parameter #2 [ string $from ] + Parameter #3 [ int $count = 1 ] + } + - Return [ RedisCluster|array|false|null ] + } + + Method [ public method zmpop ] { + + - Parameters [3] { + Parameter #0 [ array $keys ] + Parameter #1 [ string $from ] + Parameter #2 [ int $count = 1 ] + } + - Return [ RedisCluster|array|false|null ] + } + + Method [ public method blmpop ] { + + - Parameters [4] { + Parameter #0 [ float $timeout ] + Parameter #1 [ array $keys ] + Parameter #2 [ string $from ] + Parameter #3 [ int $count = 1 ] + } + - Return [ RedisCluster|array|false|null ] + } + + Method [ public method lmpop ] { + + - Parameters [3] { + Parameter #0 [ array $keys ] + Parameter #1 [ string $from ] + Parameter #2 [ int $count = 1 ] + } + - Return [ RedisCluster|array|false|null ] + } + + Method [ public method clearlasterror ] { + + - Parameters [0] { } + - Return [ bool ] } Method [ public method client ] { - Parameters [3] { - Parameter #0 [ $key_or_address ] - Parameter #1 [ $arg = ] - Parameter #2 [ ...$other_args ] + Parameter #0 [ array|string $key_or_address ] + Parameter #1 [ string $subcommand ] + Parameter #2 [ ?string $arg = NULL ] } + - Return [ array|string|bool ] } Method [ public method close ] { - Parameters [0] { } + - Return [ bool ] } Method [ public method cluster ] { - Parameters [3] { - Parameter #0 [ $key_or_address ] - Parameter #1 [ $arg = ] - Parameter #2 [ ...$other_args ] + Parameter #0 [ array|string $key_or_address ] + Parameter #1 [ string $command ] + Parameter #2 [ mixed ...$extra_args ] } + - Return [ mixed ] } Method [ public method command ] { - Parameters [1] { - Parameter #0 [ ...$args ] + Parameter #0 [ mixed ...$extra_args ] } + - Return [ mixed ] } Method [ public method config ] { - Parameters [3] { - Parameter #0 [ $key_or_address ] - Parameter #1 [ $arg = ] - Parameter #2 [ ...$other_args ] + Parameter #0 [ array|string $key_or_address ] + Parameter #1 [ string $subcommand ] + Parameter #2 [ mixed ...$extra_args ] } + - Return [ mixed ] } Method [ public method dbsize ] { - Parameters [1] { - Parameter #0 [ $key_or_address ] + Parameter #0 [ array|string $key_or_address ] + } + - Return [ RedisCluster|int ] + } + + Method [ public method copy ] { + + - Parameters [3] { + Parameter #0 [ string $src ] + Parameter #1 [ string $dst ] + Parameter #2 [ array $options = null ] } + - Return [ RedisCluster|bool ] } Method [ public method decr ] { - - Parameters [1] { - Parameter #0 [ $key ] + - Parameters [2] { + Parameter #0 [ string $key ] + Parameter #1 [ int $by = 1 ] } + - Return [ RedisCluster|int|false ] } Method [ public method decrby ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $value ] + Parameter #0 [ string $key ] + Parameter #1 [ int $value ] + } + - Return [ RedisCluster|int|false ] + } + + Method [ public method decrbyfloat ] { + + - Parameters [2] { + Parameter #0 [ string $key ] + Parameter #1 [ float $value ] } + - Return [ float ] } Method [ public method del ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ ...$other_keys ] + Parameter #0 [ array|string $key ] + Parameter #1 [ string ...$other_keys ] } + - Return [ RedisCluster|int|false ] } Method [ public method discard ] { - Parameters [0] { } + - Return [ bool ] } Method [ public method dump ] { - Parameters [1] { - Parameter #0 [ $key ] + Parameter #0 [ string $key ] } + - Return [ RedisCluster|string|false ] } Method [ public method echo ] { - - Parameters [1] { - Parameter #0 [ $msg ] + - Parameters [2] { + Parameter #0 [ array|string $key_or_address ] + Parameter #1 [ string $msg ] } + - Return [ RedisCluster|string|false ] } Method [ public method eval ] { - Parameters [3] { - Parameter #0 [ $script ] - Parameter #1 [ $args = ] - Parameter #2 [ $num_keys = ] + Parameter #0 [ string $script ] + Parameter #1 [ array $args = [] ] + Parameter #2 [ int $num_keys = 0 ] + } + - Return [ mixed ] + } + + Method [ public method eval_ro ] { + + - Parameters [3] { + Parameter #0 [ string $script ] + Parameter #1 [ array $args = [] ] + Parameter #2 [ int $num_keys = 0 ] } + - Return [ mixed ] } Method [ public method evalsha ] { - Parameters [3] { - Parameter #0 [ $script_sha ] - Parameter #1 [ $args = ] - Parameter #2 [ $num_keys = ] + Parameter #0 [ string $script_sha ] + Parameter #1 [ array $args = [] ] + Parameter #2 [ int $num_keys = 0 ] } + - Return [ mixed ] + } + + Method [ public method evalsha_ro ] { + + - Parameters [3] { + Parameter #0 [ string $script_sha ] + Parameter #1 [ array $args = [] ] + Parameter #2 [ int $num_keys = 0 ] + } + - Return [ mixed ] } Method [ public method exec ] { - Parameters [0] { } + - Return [ array|false ] } Method [ public method exists ] { - - Parameters [1] { - Parameter #0 [ $key ] + - Parameters [2] { + Parameter #0 [ mixed $key ] + Parameter #1 [ mixed ...$other_keys ] } + - Return [ RedisCluster|int|bool ] } - Method [ public method expire ] { + Method [ public method touch ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $timeout ] + Parameter #0 [ mixed $key ] + Parameter #1 [ mixed ...$other_keys ] } + - Return [ RedisCluster|int|bool ] + } + + Method [ public method expire ] { + + - Parameters [3] { + Parameter #0 [ string $key ] + Parameter #1 [ int $timeout ] + Parameter #2 [ ?string $mode = NULL ] + } + - Return [ RedisCluster|bool ] } Method [ public method expireat ] { - - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $timestamp ] + - Parameters [3] { + Parameter #0 [ string $key ] + Parameter #1 [ int $timestamp ] + Parameter #2 [ ?string $mode = NULL ] + } + - Return [ RedisCluster|bool ] + } + + Method [ public method expiretime ] { + + - Parameters [1] { + Parameter #0 [ string $key ] + } + - Return [ RedisCluster|int|false ] + } + + Method [ public method pexpiretime ] { + + - Parameters [1] { + Parameter #0 [ string $key ] } + - Return [ RedisCluster|int|false ] } Method [ public method flushall ] { - Parameters [2] { - Parameter #0 [ $key_or_address ] - Parameter #1 [ $async = ] + Parameter #0 [ array|string $key_or_address ] + Parameter #1 [ bool $async = false ] } + - Return [ RedisCluster|bool ] } Method [ public method flushdb ] { - Parameters [2] { - Parameter #0 [ $key_or_address ] - Parameter #1 [ $async = ] + Parameter #0 [ array|string $key_or_address ] + Parameter #1 [ bool $async = false ] } + - Return [ RedisCluster|bool ] } Method [ public method geoadd ] { - Parameters [5] { - Parameter #0 [ $key ] - Parameter #1 [ $lng ] - Parameter #2 [ $lat ] - Parameter #3 [ $member ] - Parameter #4 [ ...$other_triples ] + Parameter #0 [ string $key ] + Parameter #1 [ float $lng ] + Parameter #2 [ float $lat ] + Parameter #3 [ string $member ] + Parameter #4 [ mixed ...$other_triples_and_options ] } + - Return [ RedisCluster|int|false ] } Method [ public method geodist ] { - Parameters [4] { - Parameter #0 [ $key ] - Parameter #1 [ $src ] - Parameter #2 [ $dst ] - Parameter #3 [ $unit = ] + Parameter #0 [ string $key ] + Parameter #1 [ string $src ] + Parameter #2 [ string $dest ] + Parameter #3 [ ?string $unit = null ] } + - Return [ RedisCluster|float|false ] } Method [ public method geohash ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $member ] - Parameter #2 [ ...$other_members ] + Parameter #0 [ string $key ] + Parameter #1 [ string $member ] + Parameter #2 [ string ...$other_members ] } + - Return [ RedisCluster|array|false ] } Method [ public method geopos ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $member ] - Parameter #2 [ ...$other_members ] + Parameter #0 [ string $key ] + Parameter #1 [ string $member ] + Parameter #2 [ string ...$other_members ] } + - Return [ RedisCluster|array|false ] } Method [ public method georadius ] { - Parameters [6] { - Parameter #0 [ $key ] - Parameter #1 [ $lng ] - Parameter #2 [ $lan ] - Parameter #3 [ $radius ] - Parameter #4 [ $unit ] - Parameter #5 [ array $opts = ] + Parameter #0 [ string $key ] + Parameter #1 [ float $lng ] + Parameter #2 [ float $lat ] + Parameter #3 [ float $radius ] + Parameter #4 [ string $unit ] + Parameter #5 [ array $options = [] ] } + - Return [ mixed ] } Method [ public method georadius_ro ] { - Parameters [6] { - Parameter #0 [ $key ] - Parameter #1 [ $lng ] - Parameter #2 [ $lan ] - Parameter #3 [ $radius ] - Parameter #4 [ $unit ] - Parameter #5 [ array $opts = ] + Parameter #0 [ string $key ] + Parameter #1 [ float $lng ] + Parameter #2 [ float $lat ] + Parameter #3 [ float $radius ] + Parameter #4 [ string $unit ] + Parameter #5 [ array $options = [] ] } + - Return [ mixed ] } Method [ public method georadiusbymember ] { - Parameters [5] { - Parameter #0 [ $key ] - Parameter #1 [ $member ] - Parameter #2 [ $radius ] - Parameter #3 [ $unit ] - Parameter #4 [ array $opts = ] + Parameter #0 [ string $key ] + Parameter #1 [ string $member ] + Parameter #2 [ float $radius ] + Parameter #3 [ string $unit ] + Parameter #4 [ array $options = [] ] } + - Return [ mixed ] } Method [ public method georadiusbymember_ro ] { - Parameters [5] { - Parameter #0 [ $key ] - Parameter #1 [ $member ] - Parameter #2 [ $radius ] - Parameter #3 [ $unit ] - Parameter #4 [ array $opts = ] + Parameter #0 [ string $key ] + Parameter #1 [ string $member ] + Parameter #2 [ float $radius ] + Parameter #3 [ string $unit ] + Parameter #4 [ array $options = [] ] } + - Return [ mixed ] + } + + Method [ public method geosearch ] { + + - Parameters [5] { + Parameter #0 [ string $key ] + Parameter #1 [ array|string $position ] + Parameter #2 [ array|int|float $shape ] + Parameter #3 [ string $unit ] + Parameter #4 [ array $options = [] ] + } + - Return [ RedisCluster|array ] + } + + Method [ public method geosearchstore ] { + + - Parameters [6] { + Parameter #0 [ string $dst ] + Parameter #1 [ string $src ] + Parameter #2 [ array|string $position ] + Parameter #3 [ array|int|float $shape ] + Parameter #4 [ string $unit ] + Parameter #5 [ array $options = [] ] + } + - Return [ RedisCluster|array|int|false ] } Method [ public method get ] { - Parameters [1] { - Parameter #0 [ $key ] + Parameter #0 [ string $key ] } + - Return [ mixed ] } Method [ public method getbit ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $offset ] + Parameter #0 [ string $key ] + Parameter #1 [ int $value ] } + - Return [ RedisCluster|int|false ] } Method [ public method getlasterror ] { - Parameters [0] { } + - Return [ ?string ] } Method [ public method getmode ] { - Parameters [0] { } + - Return [ int ] } Method [ public method getoption ] { - Parameters [1] { - Parameter #0 [ $option ] + Parameter #0 [ int $option ] } + - Return [ mixed ] } Method [ public method getrange ] { - - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $start ] - Parameter #2 [ $end ] + - Parameters [3] { + Parameter #0 [ string $key ] + Parameter #1 [ int $start ] + Parameter #2 [ int $end ] + } + - Return [ RedisCluster|string|false ] + } + + Method [ public method lcs ] { + + - Parameters [3] { + Parameter #0 [ string $key1 ] + Parameter #1 [ string $key2 ] + Parameter #2 [ ?array $options = NULL ] + } + - Return [ RedisCluster|array|string|int|false ] + } + + Method [ public method getset ] { + + - Parameters [2] { + Parameter #0 [ string $key ] + Parameter #1 [ mixed $value ] + } + - Return [ RedisCluster|string|bool ] + } + + Method [ public method gettransferredbytes ] { + + - Parameters [0] { } + - Return [ array|false ] } - Method [ public method getset ] { + Method [ public method cleartransferredbytes ] { - - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $value ] + - Parameters [0] { } + - Return [ void ] } Method [ public method hdel ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $member ] - Parameter #2 [ ...$other_members ] + Parameter #0 [ string $key ] + Parameter #1 [ string $member ] + Parameter #2 [ string ...$other_members ] } + - Return [ RedisCluster|int|false ] } Method [ public method hexists ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $member ] + Parameter #0 [ string $key ] + Parameter #1 [ string $member ] } + - Return [ RedisCluster|bool ] } Method [ public method hget ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $member ] + Parameter #0 [ string $key ] + Parameter #1 [ string $member ] } + - Return [ mixed ] } Method [ public method hgetall ] { - Parameters [1] { - Parameter #0 [ $key ] + Parameter #0 [ string $key ] } + - Return [ RedisCluster|array|false ] } Method [ public method hincrby ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $member ] - Parameter #2 [ $value ] + Parameter #0 [ string $key ] + Parameter #1 [ string $member ] + Parameter #2 [ int $value ] } + - Return [ RedisCluster|int|false ] } Method [ public method hincrbyfloat ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $member ] - Parameter #2 [ $value ] + Parameter #0 [ string $key ] + Parameter #1 [ string $member ] + Parameter #2 [ float $value ] } + - Return [ RedisCluster|float|false ] } Method [ public method hkeys ] { - Parameters [1] { - Parameter #0 [ $key ] + Parameter #0 [ string $key ] } + - Return [ RedisCluster|array|false ] } Method [ public method hlen ] { - Parameters [1] { - Parameter #0 [ $key ] + Parameter #0 [ string $key ] } + - Return [ RedisCluster|int|false ] } Method [ public method hmget ] { - Parameters [2] { - Parameter #0 [ $key ] + Parameter #0 [ string $key ] Parameter #1 [ array $keys ] } + - Return [ RedisCluster|array|false ] } Method [ public method hmset ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ array $pairs ] + Parameter #0 [ string $key ] + Parameter #1 [ array $key_values ] } + - Return [ RedisCluster|bool ] } Method [ public method hscan ] { - Parameters [4] { - Parameter #0 [ $str_key ] - Parameter #1 [ &$i_iterator ] - Parameter #2 [ $str_pattern = ] - Parameter #3 [ $i_count = ] + Parameter #0 [ string $key ] + Parameter #1 [ ?int &$iterator ] + Parameter #2 [ ?string $pattern = null ] + Parameter #3 [ int $count = 0 ] + } + - Return [ array|bool ] + } + + Method [ public method hrandfield ] { + + - Parameters [2] { + Parameter #0 [ string $key ] + Parameter #1 [ array $options = null ] } + - Return [ RedisCluster|array|string ] } Method [ public method hset ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $member ] - Parameter #2 [ $value ] + Parameter #0 [ string $key ] + Parameter #1 [ string $member ] + Parameter #2 [ mixed $value ] } + - Return [ RedisCluster|int|false ] } Method [ public method hsetnx ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $member ] - Parameter #2 [ $value ] + Parameter #0 [ string $key ] + Parameter #1 [ string $member ] + Parameter #2 [ mixed $value ] } + - Return [ RedisCluster|bool ] } Method [ public method hstrlen ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $member ] + Parameter #0 [ string $key ] + Parameter #1 [ string $field ] } + - Return [ RedisCluster|int|false ] } Method [ public method hvals ] { - Parameters [1] { - Parameter #0 [ $key ] + Parameter #0 [ string $key ] } + - Return [ RedisCluster|array|false ] } Method [ public method incr ] { - - Parameters [1] { - Parameter #0 [ $key ] + - Parameters [2] { + Parameter #0 [ string $key ] + Parameter #1 [ int $by = 1 ] } + - Return [ RedisCluster|int|false ] } Method [ public method incrby ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $value ] + Parameter #0 [ string $key ] + Parameter #1 [ int $value ] } + - Return [ RedisCluster|int|false ] } Method [ public method incrbyfloat ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $value ] + Parameter #0 [ string $key ] + Parameter #1 [ float $value ] } + - Return [ RedisCluster|float|false ] } Method [ public method info ] { - Parameters [2] { - Parameter #0 [ $key_or_address ] - Parameter #1 [ $option = ] + Parameter #0 [ array|string $key_or_address ] + Parameter #1 [ string ...$sections ] } + - Return [ RedisCluster|array|false ] } Method [ public method keys ] { - Parameters [1] { - Parameter #0 [ $pattern ] + Parameter #0 [ string $pattern ] } + - Return [ RedisCluster|array|false ] } Method [ public method lastsave ] { - Parameters [1] { - Parameter #0 [ $key_or_address ] + Parameter #0 [ array|string $key_or_address ] } + - Return [ RedisCluster|int|false ] } Method [ public method lget ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $index ] + Parameter #0 [ string $key ] + Parameter #1 [ int $index ] } + - Return [ RedisCluster|string|bool ] } Method [ public method lindex ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $index ] + Parameter #0 [ string $key ] + Parameter #1 [ int $index ] } + - Return [ mixed ] } Method [ public method linsert ] { - Parameters [4] { - Parameter #0 [ $key ] - Parameter #1 [ $position ] - Parameter #2 [ $pivot ] - Parameter #3 [ $value ] + Parameter #0 [ string $key ] + Parameter #1 [ string $pos ] + Parameter #2 [ mixed $pivot ] + Parameter #3 [ mixed $value ] } + - Return [ RedisCluster|int|false ] } Method [ public method llen ] { - Parameters [1] { - Parameter #0 [ $key ] + Parameter #0 [ string $key ] } + - Return [ RedisCluster|int|bool ] } Method [ public method lpop ] { - - Parameters [1] { - Parameter #0 [ $key ] + - Parameters [2] { + Parameter #0 [ string $key ] + Parameter #1 [ int $count = 0 ] + } + - Return [ RedisCluster|array|string|bool ] + } + + Method [ public method lpos ] { + + - Parameters [3] { + Parameter #0 [ string $key ] + Parameter #1 [ mixed $value ] + Parameter #2 [ array $options = null ] } + - Return [ Redis|array|int|bool|null ] } Method [ public method lpush ] { - - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $value ] + - Parameters [3] { + Parameter #0 [ string $key ] + Parameter #1 [ mixed $value ] + Parameter #2 [ mixed ...$other_values ] } + - Return [ RedisCluster|int|bool ] } Method [ public method lpushx ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $value ] + Parameter #0 [ string $key ] + Parameter #1 [ mixed $value ] } + - Return [ RedisCluster|int|bool ] } Method [ public method lrange ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $start ] - Parameter #2 [ $end ] + Parameter #0 [ string $key ] + Parameter #1 [ int $start ] + Parameter #2 [ int $end ] } + - Return [ RedisCluster|array|false ] } Method [ public method lrem ] { - - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $value ] + - Parameters [3] { + Parameter #0 [ string $key ] + Parameter #1 [ mixed $value ] + Parameter #2 [ int $count = 0 ] } + - Return [ RedisCluster|int|bool ] } Method [ public method lset ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $index ] - Parameter #2 [ $value ] + Parameter #0 [ string $key ] + Parameter #1 [ int $index ] + Parameter #2 [ mixed $value ] } + - Return [ RedisCluster|bool ] } Method [ public method ltrim ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $start ] - Parameter #2 [ $stop ] + Parameter #0 [ string $key ] + Parameter #1 [ int $start ] + Parameter #2 [ int $end ] } + - Return [ RedisCluster|bool ] } Method [ public method mget ] { @@ -3197,847 +3885,1078 @@ Extension [ extension #117 redis version 5.3.7 ] { - Parameters [1] { Parameter #0 [ array $keys ] } + - Return [ RedisCluster|array|false ] } Method [ public method mset ] { - Parameters [1] { - Parameter #0 [ array $pairs ] + Parameter #0 [ array $key_values ] } + - Return [ RedisCluster|bool ] } Method [ public method msetnx ] { - Parameters [1] { - Parameter #0 [ array $pairs ] + Parameter #0 [ array $key_values ] } + - Return [ RedisCluster|array|false ] } Method [ public method multi ] { - - Parameters [0] { + - Parameters [1] { + Parameter #0 [ int $value = Redis::MULTI ] } + - Return [ RedisCluster|bool ] } Method [ public method object ] { - Parameters [2] { - Parameter #0 [ $field ] - Parameter #1 [ $key ] + Parameter #0 [ string $subcommand ] + Parameter #1 [ string $key ] } + - Return [ RedisCluster|string|int|false ] } Method [ public method persist ] { - Parameters [1] { - Parameter #0 [ $key ] + Parameter #0 [ string $key ] } + - Return [ RedisCluster|bool ] } Method [ public method pexpire ] { - - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $timestamp ] + - Parameters [3] { + Parameter #0 [ string $key ] + Parameter #1 [ int $timeout ] + Parameter #2 [ ?string $mode = NULL ] } + - Return [ RedisCluster|bool ] } Method [ public method pexpireat ] { - - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $timestamp ] + - Parameters [3] { + Parameter #0 [ string $key ] + Parameter #1 [ int $timestamp ] + Parameter #2 [ ?string $mode = NULL ] } + - Return [ RedisCluster|bool ] } Method [ public method pfadd ] { - Parameters [2] { - Parameter #0 [ $key ] + Parameter #0 [ string $key ] Parameter #1 [ array $elements ] } + - Return [ RedisCluster|bool ] } Method [ public method pfcount ] { - Parameters [1] { - Parameter #0 [ $key ] + Parameter #0 [ string $key ] } + - Return [ RedisCluster|int|false ] } Method [ public method pfmerge ] { - Parameters [2] { - Parameter #0 [ $dstkey ] + Parameter #0 [ string $key ] Parameter #1 [ array $keys ] } + - Return [ RedisCluster|bool ] } Method [ public method ping ] { - - Parameters [1] { - Parameter #0 [ $key_or_address ] + - Parameters [2] { + Parameter #0 [ array|string $key_or_address ] + Parameter #1 [ ?string $message = NULL ] } + - Return [ mixed ] } Method [ public method psetex ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $expire ] - Parameter #2 [ $value ] + Parameter #0 [ string $key ] + Parameter #1 [ int $timeout ] + Parameter #2 [ string $value ] } + - Return [ RedisCluster|bool ] } Method [ public method psubscribe ] { - Parameters [2] { Parameter #0 [ array $patterns ] - Parameter #1 [ $callback ] + Parameter #1 [ callable $callback ] } + - Return [ void ] } Method [ public method pttl ] { - Parameters [1] { - Parameter #0 [ $key ] + Parameter #0 [ string $key ] } + - Return [ RedisCluster|int|false ] } Method [ public method publish ] { - Parameters [2] { - Parameter #0 [ $channel ] - Parameter #1 [ $message ] + Parameter #0 [ string $channel ] + Parameter #1 [ string $message ] } + - Return [ RedisCluster|bool ] } Method [ public method pubsub ] { - - Parameters [3] { - Parameter #0 [ $key_or_address ] - Parameter #1 [ $arg = ] - Parameter #2 [ ...$other_args ] + - Parameters [2] { + Parameter #0 [ array|string $key_or_address ] + Parameter #1 [ string ...$values ] } + - Return [ mixed ] } Method [ public method punsubscribe ] { - Parameters [2] { - Parameter #0 [ $pattern ] - Parameter #1 [ ...$other_patterns ] + Parameter #0 [ string $pattern ] + Parameter #1 [ string ...$other_patterns ] } + - Return [ array|bool ] } Method [ public method randomkey ] { - Parameters [1] { - Parameter #0 [ $key_or_address ] + Parameter #0 [ array|string $key_or_address ] } + - Return [ RedisCluster|string|bool ] } Method [ public method rawcommand ] { - - Parameters [2] { - Parameter #0 [ $cmd ] - Parameter #1 [ ...$args ] + - Parameters [3] { + Parameter #0 [ array|string $key_or_address ] + Parameter #1 [ string $command ] + Parameter #2 [ mixed ...$args ] } + - Return [ mixed ] } Method [ public method rename ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $newkey ] + Parameter #0 [ string $key_src ] + Parameter #1 [ string $key_dst ] } + - Return [ RedisCluster|bool ] } Method [ public method renamenx ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $newkey ] + Parameter #0 [ string $key ] + Parameter #1 [ string $newkey ] } + - Return [ RedisCluster|bool ] } Method [ public method restore ] { - - Parameters [3] { - Parameter #0 [ $ttl ] - Parameter #1 [ $key ] - Parameter #2 [ $value ] + - Parameters [4] { + Parameter #0 [ string $key ] + Parameter #1 [ int $timeout ] + Parameter #2 [ string $value ] + Parameter #3 [ ?array $options = NULL ] } + - Return [ RedisCluster|bool ] } Method [ public method role ] { - - Parameters [0] { + - Parameters [1] { + Parameter #0 [ array|string $key_or_address ] } + - Return [ mixed ] } Method [ public method rpop ] { - - Parameters [1] { - Parameter #0 [ $key ] + - Parameters [2] { + Parameter #0 [ string $key ] + Parameter #1 [ int $count = 0 ] } + - Return [ RedisCluster|array|string|bool ] } Method [ public method rpoplpush ] { - Parameters [2] { - Parameter #0 [ $src ] - Parameter #1 [ $dst ] + Parameter #0 [ string $src ] + Parameter #1 [ string $dst ] } + - Return [ RedisCluster|string|bool ] } Method [ public method rpush ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $value ] + Parameter #0 [ string $key ] + Parameter #1 [ mixed ...$elements ] } + - Return [ RedisCluster|int|false ] } Method [ public method rpushx ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $value ] + Parameter #0 [ string $key ] + Parameter #1 [ string $value ] } + - Return [ RedisCluster|int|bool ] } Method [ public method sadd ] { - - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $value ] + - Parameters [3] { + Parameter #0 [ string $key ] + Parameter #1 [ mixed $value ] + Parameter #2 [ mixed ...$other_values ] } + - Return [ RedisCluster|int|false ] } Method [ public method saddarray ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ array $options ] + Parameter #0 [ string $key ] + Parameter #1 [ array $values ] } + - Return [ RedisCluster|int|bool ] } Method [ public method save ] { - Parameters [1] { - Parameter #0 [ $key_or_address ] + Parameter #0 [ array|string $key_or_address ] } + - Return [ RedisCluster|bool ] } Method [ public method scan ] { - Parameters [4] { - Parameter #0 [ &$i_iterator ] - Parameter #1 [ $str_node ] - Parameter #2 [ $str_pattern = ] - Parameter #3 [ $i_count = ] + Parameter #0 [ ?int &$iterator ] + Parameter #1 [ array|string $key_or_address ] + Parameter #2 [ ?string $pattern = null ] + Parameter #3 [ int $count = 0 ] } + - Return [ array|bool ] } Method [ public method scard ] { - Parameters [1] { - Parameter #0 [ $key ] + Parameter #0 [ string $key ] } + - Return [ RedisCluster|int|false ] } Method [ public method script ] { - - Parameters [3] { - Parameter #0 [ $key_or_address ] - Parameter #1 [ $arg = ] - Parameter #2 [ ...$other_args ] + - Parameters [2] { + Parameter #0 [ array|string $key_or_address ] + Parameter #1 [ mixed ...$args ] } + - Return [ mixed ] } Method [ public method sdiff ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ ...$other_keys ] + Parameter #0 [ string $key ] + Parameter #1 [ string ...$other_keys ] } + - Return [ RedisCluster|array|false ] } Method [ public method sdiffstore ] { - Parameters [3] { - Parameter #0 [ $dst ] - Parameter #1 [ $key ] - Parameter #2 [ ...$other_keys ] + Parameter #0 [ string $dst ] + Parameter #1 [ string $key ] + Parameter #2 [ string ...$other_keys ] } + - Return [ RedisCluster|int|false ] } Method [ public method set ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $value ] - Parameter #2 [ $opts = ] + Parameter #0 [ string $key ] + Parameter #1 [ mixed $value ] + Parameter #2 [ mixed $options = NULL ] } + - Return [ RedisCluster|string|bool ] } Method [ public method setbit ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $offset ] - Parameter #2 [ $value ] + Parameter #0 [ string $key ] + Parameter #1 [ int $offset ] + Parameter #2 [ bool $onoff ] } + - Return [ RedisCluster|int|false ] } Method [ public method setex ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $expire ] - Parameter #2 [ $value ] + Parameter #0 [ string $key ] + Parameter #1 [ int $expire ] + Parameter #2 [ mixed $value ] } + - Return [ RedisCluster|bool ] } Method [ public method setnx ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $value ] + Parameter #0 [ string $key ] + Parameter #1 [ mixed $value ] } + - Return [ RedisCluster|bool ] } Method [ public method setoption ] { - Parameters [2] { - Parameter #0 [ $option ] - Parameter #1 [ $value ] + Parameter #0 [ int $option ] + Parameter #1 [ mixed $value ] } + - Return [ bool ] } Method [ public method setrange ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $offset ] - Parameter #2 [ $value ] + Parameter #0 [ string $key ] + Parameter #1 [ int $offset ] + Parameter #2 [ string $value ] } + - Return [ RedisCluster|int|false ] } Method [ public method sinter ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ ...$other_keys ] + Parameter #0 [ array|string $key ] + Parameter #1 [ string ...$other_keys ] + } + - Return [ RedisCluster|array|false ] + } + + Method [ public method sintercard ] { + + - Parameters [2] { + Parameter #0 [ array $keys ] + Parameter #1 [ int $limit = -1 ] } + - Return [ RedisCluster|int|false ] } Method [ public method sinterstore ] { - - Parameters [3] { - Parameter #0 [ $dst ] - Parameter #1 [ $key ] - Parameter #2 [ ...$other_keys ] + - Parameters [2] { + Parameter #0 [ array|string $key ] + Parameter #1 [ string ...$other_keys ] } + - Return [ RedisCluster|int|false ] } Method [ public method sismember ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $value ] + Parameter #0 [ string $key ] + Parameter #1 [ mixed $value ] } + - Return [ RedisCluster|bool ] } - Method [ public method slowlog ] { + Method [ public method smismember ] { - Parameters [3] { - Parameter #0 [ $key_or_address ] - Parameter #1 [ $arg = ] - Parameter #2 [ ...$other_args ] + Parameter #0 [ string $key ] + Parameter #1 [ string $member ] + Parameter #2 [ string ...$other_members ] } + - Return [ RedisCluster|array|false ] + } + + Method [ public method slowlog ] { + + - Parameters [2] { + Parameter #0 [ array|string $key_or_address ] + Parameter #1 [ mixed ...$args ] + } + - Return [ mixed ] } Method [ public method smembers ] { - Parameters [1] { - Parameter #0 [ $key ] + Parameter #0 [ string $key ] } + - Return [ RedisCluster|array|false ] } Method [ public method smove ] { - Parameters [3] { - Parameter #0 [ $src ] - Parameter #1 [ $dst ] - Parameter #2 [ $value ] + Parameter #0 [ string $src ] + Parameter #1 [ string $dst ] + Parameter #2 [ string $member ] } + - Return [ RedisCluster|bool ] } Method [ public method sort ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ array $options = ] + Parameter #0 [ string $key ] + Parameter #1 [ ?array $options = NULL ] + } + - Return [ RedisCluster|array|string|int|bool ] + } + + Method [ public method sort_ro ] { + + - Parameters [2] { + Parameter #0 [ string $key ] + Parameter #1 [ ?array $options = NULL ] } + - Return [ RedisCluster|array|string|int|bool ] } Method [ public method spop ] { - - Parameters [1] { - Parameter #0 [ $key ] + - Parameters [2] { + Parameter #0 [ string $key ] + Parameter #1 [ int $count = 0 ] } + - Return [ RedisCluster|array|string|false ] } Method [ public method srandmember ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $count = ] + Parameter #0 [ string $key ] + Parameter #1 [ int $count = 0 ] } + - Return [ RedisCluster|array|string|false ] } Method [ public method srem ] { - - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $value ] + - Parameters [3] { + Parameter #0 [ string $key ] + Parameter #1 [ mixed $value ] + Parameter #2 [ mixed ...$other_values ] } + - Return [ RedisCluster|int|false ] } Method [ public method sscan ] { - Parameters [4] { - Parameter #0 [ $str_key ] - Parameter #1 [ &$i_iterator ] - Parameter #2 [ $str_pattern = ] - Parameter #3 [ $i_count = ] + Parameter #0 [ string $key ] + Parameter #1 [ ?int &$iterator ] + Parameter #2 [ ?string $pattern = null ] + Parameter #3 [ int $count = 0 ] } + - Return [ array|false ] } Method [ public method strlen ] { - Parameters [1] { - Parameter #0 [ $key ] + Parameter #0 [ string $key ] } + - Return [ RedisCluster|int|false ] } Method [ public method subscribe ] { - Parameters [2] { Parameter #0 [ array $channels ] - Parameter #1 [ $callback ] + Parameter #1 [ callable $cb ] } + - Return [ void ] } Method [ public method sunion ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ ...$other_keys ] + Parameter #0 [ string $key ] + Parameter #1 [ string ...$other_keys ] } + - Return [ RedisCluster|array|bool ] } Method [ public method sunionstore ] { - Parameters [3] { - Parameter #0 [ $dst ] - Parameter #1 [ $key ] - Parameter #2 [ ...$other_keys ] + Parameter #0 [ string $dst ] + Parameter #1 [ string $key ] + Parameter #2 [ string ...$other_keys ] } + - Return [ RedisCluster|int|false ] } Method [ public method time ] { - - Parameters [0] { + - Parameters [1] { + Parameter #0 [ array|string $key_or_address ] } + - Return [ RedisCluster|array|bool ] } Method [ public method ttl ] { - Parameters [1] { - Parameter #0 [ $key ] + Parameter #0 [ string $key ] } + - Return [ RedisCluster|int|false ] } Method [ public method type ] { - Parameters [1] { - Parameter #0 [ $key ] + Parameter #0 [ string $key ] } + - Return [ RedisCluster|int|false ] } Method [ public method unsubscribe ] { - - Parameters [2] { - Parameter #0 [ $channel ] - Parameter #1 [ ...$other_channels ] + - Parameters [1] { + Parameter #0 [ array $channels ] } + - Return [ array|bool ] } Method [ public method unlink ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ ...$other_keys ] + Parameter #0 [ array|string $key ] + Parameter #1 [ string ...$other_keys ] } + - Return [ RedisCluster|int|false ] } Method [ public method unwatch ] { - Parameters [0] { } + - Return [ bool ] } Method [ public method watch ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ ...$other_keys ] + Parameter #0 [ string $key ] + Parameter #1 [ string ...$other_keys ] } + - Return [ RedisCluster|bool ] } Method [ public method xack ] { - Parameters [3] { - Parameter #0 [ $str_key ] - Parameter #1 [ $str_group ] - Parameter #2 [ array $arr_ids ] + Parameter #0 [ string $key ] + Parameter #1 [ string $group ] + Parameter #2 [ array $ids ] } + - Return [ RedisCluster|int|false ] } Method [ public method xadd ] { - Parameters [5] { - Parameter #0 [ $str_key ] - Parameter #1 [ $str_id ] - Parameter #2 [ array $arr_fields ] - Parameter #3 [ $i_maxlen = ] - Parameter #4 [ $boo_approximate = ] + Parameter #0 [ string $key ] + Parameter #1 [ string $id ] + Parameter #2 [ array $values ] + Parameter #3 [ int $maxlen = 0 ] + Parameter #4 [ bool $approx = false ] } + - Return [ RedisCluster|string|false ] } Method [ public method xclaim ] { - Parameters [6] { - Parameter #0 [ $str_key ] - Parameter #1 [ $str_group ] - Parameter #2 [ $str_consumer ] - Parameter #3 [ $i_min_idle ] - Parameter #4 [ array $arr_ids ] - Parameter #5 [ array $arr_opts = ] + Parameter #0 [ string $key ] + Parameter #1 [ string $group ] + Parameter #2 [ string $consumer ] + Parameter #3 [ int $min_iddle ] + Parameter #4 [ array $ids ] + Parameter #5 [ array $options ] } + - Return [ RedisCluster|array|string|false ] } Method [ public method xdel ] { - Parameters [2] { - Parameter #0 [ $str_key ] - Parameter #1 [ array $arr_ids ] + Parameter #0 [ string $key ] + Parameter #1 [ array $ids ] } + - Return [ RedisCluster|int|false ] } Method [ public method xgroup ] { - - Parameters [5] { - Parameter #0 [ $str_operation ] - Parameter #1 [ $str_key = ] - Parameter #2 [ $str_arg1 = ] - Parameter #3 [ $str_arg2 = ] - Parameter #4 [ $str_arg3 = ] + - Parameters [6] { + Parameter #0 [ string $operation ] + Parameter #1 [ string $key = null ] + Parameter #2 [ string $group = null ] + Parameter #3 [ string $id_or_consumer = null ] + Parameter #4 [ bool $mkstream = false ] + Parameter #5 [ int $entries_read = -2 ] + } + - Return [ mixed ] + } + + Method [ public method xautoclaim ] { + + - Parameters [7] { + Parameter #0 [ string $key ] + Parameter #1 [ string $group ] + Parameter #2 [ string $consumer ] + Parameter #3 [ int $min_idle ] + Parameter #4 [ string $start ] + Parameter #5 [ int $count = -1 ] + Parameter #6 [ bool $justid = false ] } + - Return [ RedisCluster|array|bool ] } Method [ public method xinfo ] { - - Parameters [3] { - Parameter #0 [ $str_cmd ] - Parameter #1 [ $str_key = ] - Parameter #2 [ $str_group = ] + - Parameters [4] { + Parameter #0 [ string $operation ] + Parameter #1 [ ?string $arg1 = null ] + Parameter #2 [ ?string $arg2 = null ] + Parameter #3 [ int $count = -1 ] } + - Return [ mixed ] } Method [ public method xlen ] { - Parameters [1] { - Parameter #0 [ $key ] + Parameter #0 [ string $key ] } + - Return [ RedisCluster|int|false ] } Method [ public method xpending ] { - Parameters [6] { - Parameter #0 [ $str_key ] - Parameter #1 [ $str_group ] - Parameter #2 [ $str_start = ] - Parameter #3 [ $str_end = ] - Parameter #4 [ $i_count = ] - Parameter #5 [ $str_consumer = ] + Parameter #0 [ string $key ] + Parameter #1 [ string $group ] + Parameter #2 [ ?string $start = null ] + Parameter #3 [ ?string $end = null ] + Parameter #4 [ int $count = -1 ] + Parameter #5 [ ?string $consumer = null ] } + - Return [ RedisCluster|array|false ] } Method [ public method xrange ] { - Parameters [4] { - Parameter #0 [ $str_key ] - Parameter #1 [ $str_start ] - Parameter #2 [ $str_end ] - Parameter #3 [ $i_count = ] + Parameter #0 [ string $key ] + Parameter #1 [ string $start ] + Parameter #2 [ string $end ] + Parameter #3 [ int $count = -1 ] } + - Return [ RedisCluster|array|bool ] } Method [ public method xread ] { - Parameters [3] { - Parameter #0 [ array $arr_streams ] - Parameter #1 [ $i_count = ] - Parameter #2 [ $i_block = ] + Parameter #0 [ array $streams ] + Parameter #1 [ int $count = -1 ] + Parameter #2 [ int $block = -1 ] } + - Return [ RedisCluster|array|bool ] } Method [ public method xreadgroup ] { - Parameters [5] { - Parameter #0 [ $str_group ] - Parameter #1 [ $str_consumer ] - Parameter #2 [ array $arr_streams ] - Parameter #3 [ $i_count = ] - Parameter #4 [ $i_block = ] + Parameter #0 [ string $group ] + Parameter #1 [ string $consumer ] + Parameter #2 [ array $streams ] + Parameter #3 [ int $count = 1 ] + Parameter #4 [ int $block = 1 ] } + - Return [ RedisCluster|array|bool ] } Method [ public method xrevrange ] { - Parameters [4] { - Parameter #0 [ $str_key ] - Parameter #1 [ $str_start ] - Parameter #2 [ $str_end ] - Parameter #3 [ $i_count = ] + Parameter #0 [ string $key ] + Parameter #1 [ string $start ] + Parameter #2 [ string $end ] + Parameter #3 [ int $count = -1 ] } + - Return [ RedisCluster|array|bool ] } Method [ public method xtrim ] { - - Parameters [3] { - Parameter #0 [ $str_key ] - Parameter #1 [ $i_maxlen ] - Parameter #2 [ $boo_approximate = ] + - Parameters [5] { + Parameter #0 [ string $key ] + Parameter #1 [ int $maxlen ] + Parameter #2 [ bool $approx = false ] + Parameter #3 [ bool $minid = false ] + Parameter #4 [ int $limit = -1 ] } + - Return [ RedisCluster|int|false ] } Method [ public method zadd ] { - - Parameters [4] { - Parameter #0 [ $key ] - Parameter #1 [ $score ] - Parameter #2 [ $value ] - Parameter #3 [ ...$extra_args ] + - Parameters [3] { + Parameter #0 [ string $key ] + Parameter #1 [ array|float $score_or_options ] + Parameter #2 [ mixed ...$more_scores_and_mems ] } + - Return [ RedisCluster|int|float|false ] } Method [ public method zcard ] { - Parameters [1] { - Parameter #0 [ $key ] + Parameter #0 [ string $key ] } + - Return [ RedisCluster|int|false ] } Method [ public method zcount ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $min ] - Parameter #2 [ $max ] + Parameter #0 [ string $key ] + Parameter #1 [ string $start ] + Parameter #2 [ string $end ] } + - Return [ RedisCluster|int|false ] } Method [ public method zincrby ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $value ] - Parameter #2 [ $member ] + Parameter #0 [ string $key ] + Parameter #1 [ float $value ] + Parameter #2 [ string $member ] } + - Return [ RedisCluster|float|false ] } Method [ public method zinterstore ] { - Parameters [4] { - Parameter #0 [ $key ] + Parameter #0 [ string $dst ] Parameter #1 [ array $keys ] - Parameter #2 [ ?array $weights = ] - Parameter #3 [ $aggregate = ] + Parameter #2 [ ?array $weights = null ] + Parameter #3 [ ?string $aggregate = null ] + } + - Return [ RedisCluster|int|false ] + } + + Method [ public method zintercard ] { + + - Parameters [2] { + Parameter #0 [ array $keys ] + Parameter #1 [ int $limit = -1 ] } + - Return [ RedisCluster|int|false ] } Method [ public method zlexcount ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $min ] - Parameter #2 [ $max ] + Parameter #0 [ string $key ] + Parameter #1 [ string $min ] + Parameter #2 [ string $max ] } + - Return [ RedisCluster|int|false ] } Method [ public method zpopmax ] { - - Parameters [1] { - Parameter #0 [ $key ] + - Parameters [2] { + Parameter #0 [ string $key ] + Parameter #1 [ int $value = null ] } + - Return [ RedisCluster|array|bool ] } Method [ public method zpopmin ] { - - Parameters [1] { - Parameter #0 [ $key ] + - Parameters [2] { + Parameter #0 [ string $key ] + Parameter #1 [ int $value = null ] } + - Return [ RedisCluster|array|bool ] } Method [ public method zrange ] { - Parameters [4] { - Parameter #0 [ $key ] - Parameter #1 [ $start ] - Parameter #2 [ $end ] - Parameter #3 [ $scores = ] + Parameter #0 [ string $key ] + Parameter #1 [ mixed $start ] + Parameter #2 [ mixed $end ] + Parameter #3 [ array|bool|null $options = null ] + } + - Return [ RedisCluster|array|bool ] + } + + Method [ public method zrangestore ] { + + - Parameters [5] { + Parameter #0 [ string $dstkey ] + Parameter #1 [ string $srckey ] + Parameter #2 [ int $start ] + Parameter #3 [ int $end ] + Parameter #4 [ array|bool|null $options = null ] } + - Return [ RedisCluster|int|false ] + } + + Method [ public method zrandmember ] { + + - Parameters [2] { + Parameter #0 [ string $key ] + Parameter #1 [ array $options = null ] + } + - Return [ RedisCluster|array|string ] } Method [ public method zrangebylex ] { - Parameters [5] { - Parameter #0 [ $key ] - Parameter #1 [ $min ] - Parameter #2 [ $max ] - Parameter #3 [ $offset = ] - Parameter #4 [ $limit = ] + Parameter #0 [ string $key ] + Parameter #1 [ string $min ] + Parameter #2 [ string $max ] + Parameter #3 [ int $offset = -1 ] + Parameter #4 [ int $count = -1 ] } + - Return [ RedisCluster|array|false ] } Method [ public method zrangebyscore ] { - Parameters [4] { - Parameter #0 [ $key ] - Parameter #1 [ $start ] - Parameter #2 [ $end ] - Parameter #3 [ array $options = ] + Parameter #0 [ string $key ] + Parameter #1 [ string $start ] + Parameter #2 [ string $end ] + Parameter #3 [ array $options = [] ] } + - Return [ RedisCluster|array|false ] } Method [ public method zrank ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $member ] + Parameter #0 [ string $key ] + Parameter #1 [ mixed $member ] } + - Return [ RedisCluster|int|false ] } Method [ public method zrem ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $member ] - Parameter #2 [ ...$other_members ] + Parameter #0 [ string $key ] + Parameter #1 [ string $value ] + Parameter #2 [ string ...$other_values ] } + - Return [ RedisCluster|int|false ] } Method [ public method zremrangebylex ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $min ] - Parameter #2 [ $max ] + Parameter #0 [ string $key ] + Parameter #1 [ string $min ] + Parameter #2 [ string $max ] } + - Return [ RedisCluster|int|false ] } Method [ public method zremrangebyrank ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $min ] - Parameter #2 [ $max ] + Parameter #0 [ string $key ] + Parameter #1 [ string $min ] + Parameter #2 [ string $max ] } + - Return [ RedisCluster|int|false ] } Method [ public method zremrangebyscore ] { - Parameters [3] { - Parameter #0 [ $key ] - Parameter #1 [ $min ] - Parameter #2 [ $max ] + Parameter #0 [ string $key ] + Parameter #1 [ string $min ] + Parameter #2 [ string $max ] } + - Return [ RedisCluster|int|false ] } Method [ public method zrevrange ] { - Parameters [4] { - Parameter #0 [ $key ] - Parameter #1 [ $start ] - Parameter #2 [ $end ] - Parameter #3 [ $scores = ] + Parameter #0 [ string $key ] + Parameter #1 [ string $min ] + Parameter #2 [ string $max ] + Parameter #3 [ array $options = null ] } + - Return [ RedisCluster|array|bool ] } Method [ public method zrevrangebylex ] { - - Parameters [5] { - Parameter #0 [ $key ] - Parameter #1 [ $min ] - Parameter #2 [ $max ] - Parameter #3 [ $offset = ] - Parameter #4 [ $limit = ] + - Parameters [4] { + Parameter #0 [ string $key ] + Parameter #1 [ string $min ] + Parameter #2 [ string $max ] + Parameter #3 [ array $options = null ] } + - Return [ RedisCluster|array|bool ] } Method [ public method zrevrangebyscore ] { - Parameters [4] { - Parameter #0 [ $key ] - Parameter #1 [ $start ] - Parameter #2 [ $end ] - Parameter #3 [ array $options = ] + Parameter #0 [ string $key ] + Parameter #1 [ string $min ] + Parameter #2 [ string $max ] + Parameter #3 [ array $options = null ] } + - Return [ RedisCluster|array|bool ] } Method [ public method zrevrank ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $member ] + Parameter #0 [ string $key ] + Parameter #1 [ mixed $member ] } + - Return [ RedisCluster|int|false ] } Method [ public method zscan ] { - Parameters [4] { - Parameter #0 [ $str_key ] - Parameter #1 [ &$i_iterator ] - Parameter #2 [ $str_pattern = ] - Parameter #3 [ $i_count = ] + Parameter #0 [ string $key ] + Parameter #1 [ ?int &$iterator ] + Parameter #2 [ ?string $pattern = null ] + Parameter #3 [ int $count = 0 ] } + - Return [ RedisCluster|array|bool ] } Method [ public method zscore ] { - Parameters [2] { - Parameter #0 [ $key ] - Parameter #1 [ $member ] + Parameter #0 [ string $key ] + Parameter #1 [ mixed $member ] + } + - Return [ RedisCluster|float|false ] + } + + Method [ public method zmscore ] { + + - Parameters [3] { + Parameter #0 [ string $key ] + Parameter #1 [ mixed $member ] + Parameter #2 [ mixed ...$other_members ] } + - Return [ Redis|array|false ] } Method [ public method zunionstore ] { - Parameters [4] { - Parameter #0 [ $key ] + Parameter #0 [ string $dst ] + Parameter #1 [ array $keys ] + Parameter #2 [ ?array $weights = NULL ] + Parameter #3 [ ?string $aggregate = NULL ] + } + - Return [ RedisCluster|int|false ] + } + + Method [ public method zinter ] { + + - Parameters [3] { + Parameter #0 [ array $keys ] + Parameter #1 [ ?array $weights = null ] + Parameter #2 [ ?array $options = null ] + } + - Return [ RedisCluster|array|false ] + } + + Method [ public method zdiffstore ] { + + - Parameters [2] { + Parameter #0 [ string $dst ] Parameter #1 [ array $keys ] - Parameter #2 [ ?array $weights = ] - Parameter #3 [ $aggregate = ] } + - Return [ RedisCluster|int|false ] + } + + Method [ public method zunion ] { + + - Parameters [3] { + Parameter #0 [ array $keys ] + Parameter #1 [ ?array $weights = null ] + Parameter #2 [ ?array $options = null ] + } + - Return [ RedisCluster|array|false ] + } + + Method [ public method zdiff ] { + + - Parameters [2] { + Parameter #0 [ array $keys ] + Parameter #1 [ array $options = null ] + } + - Return [ RedisCluster|array|false ] } } } - Class [ class RedisSentinel ] { + Class [ class RedisClusterException extends RuntimeException implements Stringable, Throwable ] { - Constants [0] { } @@ -4048,92 +4967,88 @@ Extension [ extension #117 redis version 5.3.7 ] { - Static methods [0] { } - - Properties [0] { + - Properties [4] { + Property [ protected $message = '' ] + Property [ protected $code = 0 ] + Property [ protected string $file = '' ] + Property [ protected int $line = 0 ] } - - Methods [11] { - Method [ public method __construct ] { - - - Parameters [6] { - Parameter #0 [ $host ] - Parameter #1 [ $port = ] - Parameter #2 [ $timeout = ] - Parameter #3 [ $persistent = ] - Parameter #4 [ $retry_interval = ] - Parameter #5 [ $read_timeout = ] - } - } - - Method [ public method ckquorum ] { + - Methods [10] { + Method [ public method __construct ] { - - Parameters [1] { - Parameter #0 [ $value ] + - Parameters [3] { + Parameter #0 [ string $message = "" ] + Parameter #1 [ int $code = 0 ] + Parameter #2 [ ?Throwable $previous = null ] } } - Method [ public method failover ] { + Method [ public method __wakeup ] { - - Parameters [1] { - Parameter #0 [ $value ] + - Parameters [0] { } + - Tentative return [ void ] } - Method [ public method flushconfig ] { + Method [ final public method getMessage ] { - Parameters [0] { } + - Return [ string ] } - Method [ public method getMasterAddrByName ] { + Method [ final public method getCode ] { - - Parameters [1] { - Parameter #0 [ $value ] + - Parameters [0] { } } - Method [ public method master ] { + Method [ final public method getFile ] { - - Parameters [1] { - Parameter #0 [ $value ] + - Parameters [0] { } + - Return [ string ] } - Method [ public method masters ] { + Method [ final public method getLine ] { - Parameters [0] { } + - Return [ int ] } - Method [ public method ping ] { + Method [ final public method getTrace ] { - Parameters [0] { } + - Return [ array ] } - Method [ public method reset ] { + Method [ final public method getPrevious ] { - - Parameters [1] { - Parameter #0 [ $value ] + - Parameters [0] { } + - Return [ ?Throwable ] } - Method [ public method sentinels ] { + Method [ final public method getTraceAsString ] { - - Parameters [1] { - Parameter #0 [ $value ] + - Parameters [0] { } + - Return [ string ] } - Method [ public method slaves ] { + Method [ public method __toString ] { - - Parameters [1] { - Parameter #0 [ $value ] + - Parameters [0] { } + - Return [ string ] } } } - Class [ class RedisException extends Exception implements Throwable, Stringable ] { + Class [ class RedisSentinel ] { - Constants [0] { } @@ -4144,87 +5059,94 @@ Extension [ extension #117 redis version 5.3.7 ] { - Static methods [0] { } - - Properties [4] { - Property [ protected $message = '' ] - Property [ protected $code = 0 ] - Property [ protected $file = NULL ] - Property [ protected $line = NULL ] + - Properties [0] { } - - Methods [10] { - Method [ public method __construct ] { + - Methods [12] { + Method [ public method __construct ] { - - Parameters [3] { - Parameter #0 [ string $message = "" ] - Parameter #1 [ int $code = 0 ] - Parameter #2 [ ?Throwable $previous = null ] + - Parameters [1] { + Parameter #0 [ array $options = null ] } } - Method [ public method __wakeup ] { + Method [ public method ckquorum ] { - - Parameters [0] { + - Parameters [1] { + Parameter #0 [ string $master ] } } - Method [ final public method getMessage ] { + Method [ public method failover ] { - - Parameters [0] { + - Parameters [1] { + Parameter #0 [ string $master ] } - - Return [ string ] } - Method [ final public method getCode ] { + Method [ public method flushconfig ] { - Parameters [0] { } } - Method [ final public method getFile ] { + Method [ public method getMasterAddrByName ] { - - Parameters [0] { + - Parameters [1] { + Parameter #0 [ string $master ] } - - Return [ string ] } - Method [ final public method getLine ] { + Method [ public method master ] { - - Parameters [0] { + - Parameters [1] { + Parameter #0 [ string $master ] } - - Return [ int ] } - Method [ final public method getTrace ] { + Method [ public method masters ] { - Parameters [0] { } - - Return [ array ] } - Method [ final public method getPrevious ] { + Method [ public method myid ] { - Parameters [0] { } - - Return [ ?Throwable ] + - Return [ string ] } - Method [ final public method getTraceAsString ] { + Method [ public method ping ] { - Parameters [0] { } - - Return [ string ] } - Method [ public method __toString ] { + Method [ public method reset ] { - - Parameters [0] { + - Parameters [1] { + Parameter #0 [ string $pattern ] + } + } + + Method [ public method sentinels ] { + + - Parameters [1] { + Parameter #0 [ string $master ] + } + } + + Method [ public method slaves ] { + + - Parameters [1] { + Parameter #0 [ string $master ] } - - Return [ string ] } } } - Class [ class RedisClusterException extends Exception implements Throwable, Stringable ] { + Class [ class RedisException extends RuntimeException implements Stringable, Throwable ] { - Constants [0] { } @@ -4238,8 +5160,8 @@ Extension [ extension #117 redis version 5.3.7 ] { - Properties [4] { Property [ protected $message = '' ] Property [ protected $code = 0 ] - Property [ protected $file = NULL ] - Property [ protected $line = NULL ] + Property [ protected string $file = '' ] + Property [ protected int $line = 0 ] } - Methods [10] { @@ -4256,6 +5178,7 @@ Extension [ extension #117 redis version 5.3.7 ] { - Parameters [0] { } + - Tentative return [ void ] } Method [ final public method getMessage ] { -- cgit