code
stringlengths
31
1.39M
docstring
stringlengths
23
16.8k
func_name
stringlengths
1
126
language
stringclasses
1 value
repo
stringlengths
7
63
path
stringlengths
7
166
url
stringlengths
50
220
license
stringclasses
7 values
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function lastsave() : Relay|int|false { }
Returns the UNIX time stamp of the last successful save to disk. @return Relay|int|false
lastsave
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function lcs(mixed $key1, mixed $key2, ?array $options = null) : mixed { }
Get the longest common subsequence between two string keys. @param mixed $key1 @param mixed $key2 @param array|null $options @return mixed
lcs
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function bgsave(bool $schedule = \false) : Relay|bool { }
Asynchronously save the dataset to disk. @param bool $schedule @return Relay|bool
bgsave
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function save() : Relay|bool { }
Synchronously save the dataset to disk. @return Relay|bool
save
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function role() : Relay|array|false { }
Returns the role of the instance in the context of replication. @return Relay|array|false
role
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function ttl(mixed $key) : Relay|int|false { }
Returns the remaining time to live of a key that has a timeout in seconds. @param mixed $key @return Relay|int
ttl
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function pttl(mixed $key) : Relay|int|false { }
Returns the remaining time to live of a key that has a timeout in milliseconds. @param mixed $key @return Relay|int
pttl
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand, \DEPTRAC_INTERNAL\Relay\Attributes\Cached] public function exists(mixed ...$keys) : Relay|bool|int { }
Returns if key(s) exists. @param mixed $keys,... @return Relay|bool|int
exists
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function eval(mixed $script, array $args = [], int $num_keys = 0) : mixed { }
Evaluate script using the Lua interpreter. @see https://redis.io/commands/eval @param mixed $script @param array $args @param int $num_keys @return mixed
eval
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function eval_ro(mixed $script, array $args = [], int $num_keys = 0) : mixed { }
Evaluate script using the Lua interpreter. This is just the "read-only" variant of EVAL meaning it can be run on read-only replicas. @see https://redis.io/commands/eval_ro @param mixed $script @param array $args @param int $num_keys @return mixed
eval_ro
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function evalsha(string $sha, array $args = [], int $num_keys = 0) : mixed { }
Evaluates a script cached on the server-side by its SHA1 digest. @param string $sha @param array $args @param int $num_keys @return mixed
evalsha
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function evalsha_ro(string $sha, array $args = [], int $num_keys = 0) : mixed { }
Evaluates a script cached on the server-side by its SHA1 digest. This is just the "read-only" variant of `EVALSHA` meaning it can be run on read-only replicas. @param string $sha @param array $args @param int $num_keys @return mixed
evalsha_ro
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function client(string $operation, mixed ...$args) : mixed { }
Executes `CLIENT` command operations. @param string $operation @param mixed $args,... @return mixed
client
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function geoadd(string $key, float $lng, float $lat, string $member, mixed ...$other_triples_and_options) : Relay|int|false { }
Add one or more members to a geospacial sorted set @param string $key @param float $lng @param float $lat @param string $member @param mixed $other_triples_and_options,... @return Relay|int|false
geoadd
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function geodist(string $key, string $src, string $dst, ?string $unit = null) : Relay|float|false { }
Get the distance between two members of a geospacially encoded sorted set. @param string $key @param string $src @param string $dst @param string|null $unit @return Relay|float|false
geodist
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function geohash(string $key, string $member, string ...$other_members) : Relay|array|false { }
Retrieve one or more GeoHash encoded strings for members of the set. @param string $key @param string $member @param string $other_members,... @return Relay|array|false
geohash
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function georadius(string $key, float $lng, float $lat, float $radius, string $unit, array $options = []) : mixed { }
Retrieve members of a geospacially sorted set that are within a certain radius of a location. @param string $key @param float $lng @param float $lat @param float $radius @param string $unit @param array $options @return mixed
georadius
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function georadiusbymember(string $key, string $member, float $radius, string $unit, array $options = []) : mixed { }
Similar to `GEORADIUS` except it uses a member as the center of the query. @param string $key @param string $member @param float $radius @param string $unit @param array $options @return mixed
georadiusbymember
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function georadiusbymember_ro(string $key, string $member, float $radius, string $unit, array $options = []) : mixed { }
Similar to `GEORADIUS` except it uses a member as the center of the query. @param string $key @param string $member @param float $radius @param string $unit @param array $options @return mixed
georadiusbymember_ro
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function georadius_ro(string $key, float $lng, float $lat, float $radius, string $unit, array $options = []) : mixed { }
Retrieve members of a geospacially sorted set that are within a certain radius of a location. @param string $key @param float $lng @param float $lat @param float $radius @param string $unit @param array $options @return mixed
georadius_ro
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function geosearch(string $key, array|string $position, array|int|float $shape, string $unit, array $options = []) : Relay|array { }
Search a geospacial sorted set for members in various ways. @param string $key @param array|string $position @param array|int|float $shape @param string $unit @param array $options @return Relay|array
geosearch
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function geosearchstore(string $dst, string $src, array|string $position, array|int|float $shape, string $unit, array $options = []) : Relay|int|false { }
Search a geospacial sorted set for members within a given area or range, storing the results into a new set. @param string $dst @param string $src @param array|string $position @param array|int|float $shape @param string $unit @param array $options @return Relay|int|false
geosearchstore
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand, \DEPTRAC_INTERNAL\Relay\Attributes\Cached] public function get(mixed $key) : mixed { }
Get the value of key. @param mixed $key @return mixed
get
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function getset(mixed $key, mixed $value) : mixed { }
Atomically sets key to value and returns the old value stored at key. @param mixed $key @param mixed $value @return mixed
getset
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand, \DEPTRAC_INTERNAL\Relay\Attributes\Cached] public function getrange(mixed $key, int $start, int $end) : Relay|string|false { }
Returns the substring of the string value stored at key, determined by the offsets start and end (both are inclusive). @param mixed $key @param int $start @param int $end @return Relay|string|false
getrange
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function setrange(mixed $key, int $start, mixed $value) : Relay|int|false { }
Overwrites part of the string stored at key, starting at the specified offset, for the entire length of value. @param mixed $key @param int $start @param mixed $value @return Relay|int|false
setrange
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand, \DEPTRAC_INTERNAL\Relay\Attributes\Cached] public function getbit(mixed $key, int $pos) : Relay|int|false { }
Returns the bit value at offset in the string value stored at key. @param mixed $key @param int $pos @return Relay|int|false
getbit
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand, \DEPTRAC_INTERNAL\Relay\Attributes\Cached] public function bitcount(mixed $key, int $start = 0, int $end = -1, bool $by_bit = \false) : Relay|int|false { }
Count the number of set bits (population counting) in a string. @param mixed $key @param int $start @param int $end @param bool $by_bit @return Relay|int|false
bitcount
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function bitfield(mixed $key, mixed ...$args) : Relay|array|false { }
Perform various bitfield operations on a string key, such as getting/setting bit ranges, incrementing, etc. @param mixed $key @param mixed $args,... @return Relay|array|false
bitfield
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function config(string $operation, mixed $key = null, ?string $value = null) : Relay|array|bool { }
This is a container command for runtime configuration commands. @param string $operation @param mixed $key @param string|null $value @return Relay|array|bool
config
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function command(mixed ...$args) : Relay|array|int|false { }
Return an array with details about every Redis command. @param array $args,... @return Relay|array|int|false
command
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function bitop(string $operation, string $dstkey, string $srckey, string ...$other_keys) : Relay|int|false { }
Perform a bitwise operation on one or more keys, storing the result in a new key. @param string $operation @param string $dstkey @param string $srckey @param string $other_keys,... @return Relay|int|false
bitop
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function bitpos(mixed $key, int $bit, int $start = null, int $end = null, bool $bybit = \false) : Relay|int|false { }
Return the position of the first bit set to 1 or 0 in a string. @param mixed $key @param int $bit @param int $start @param int $end @param bool $bybit @return Relay|int|false
bitpos
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function setbit(mixed $key, int $pos, int $val) : Relay|int|false { }
Sets or clears the bit at offset in the string value stored at key. @param mixed $key @param int $pos @param int $val @return Relay|int|false
setbit
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function acl(string $cmd, string ...$args) : mixed { }
Interact with Redis' ACLs @param string $cmd @param string $args,... @return mixed
acl
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function append(mixed $key, mixed $value) : Relay|int|false { }
If key already exists and is a string, this command appends the value at the end of the string. If key does not exist it is created and set as an empty string, so APPEND will be similar to SET in this special case. @param mixed $key @param mixed $value @return Relay|int|false
append
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function set(mixed $key, mixed $value, mixed $options = null) : mixed { }
Set key to hold the string value. If key already holds a value, it is overwritten, regardless of its type. @param mixed $key @param mixed $value @param mixed $options @return mixed
set
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function getex(mixed $key, ?array $options = null) : mixed { }
Get the value of key and optionally set its expiration. GETEX is similar to GET, but is a write command with additional options. @param mixed $key @param array $options @return mixed
getex
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function getdel(mixed $key) : mixed { }
Get the value of key and delete the key. This command is similar to GET, except for the fact that it also deletes the key on success (if and only if the key's value type is a string). @param mixed $key @return mixed
getdel
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function setex(mixed $key, int $seconds, mixed $value) : Relay|bool { }
Set key to hold the string value and set key to timeout after a given number of seconds. @param mixed $key @param int $seconds @param mixed $value @return Relay|bool
setex
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function pfadd(string $key, array $elements) : Relay|int|false { }
Adds the specified elements to the specified HyperLogLog. @param string $key @param array $elements @return Relay|int|false
pfadd
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function pfcount(string $key) : Relay|int|false { }
Return the approximated cardinality of the set(s) observed by the HyperLogLog at key(s). @param string $key @return Relay|int
pfcount
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function psetex(mixed $key, int $milliseconds, mixed $value) : Relay|bool { }
Set key to hold the string value and set key to timeout after a given number of milliseconds. @param mixed $key @param int $milliseconds @param mixed $value @return Relay|bool
psetex
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function publish(string $channel, string $message) : Relay|int|false { }
Posts a message to the given channel. @param string $channel @param string $message @return Relay|int|false
publish
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function pubsub(string $operation, mixed ...$args) : mixed { }
A container command for Pub/Sub introspection commands. @param string $operation @param mixed $args,... @return mixed
pubsub
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function spublish(string $channel, string $message) : Relay|int|false { }
Posts a message to the given shard channel. @param string $channel @param string $message @return Relay|int|false
spublish
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function setnx(mixed $key, mixed $value) : Relay|bool { }
Set key to hold string value if key does not exist. In that case, it is equal to SET. When key already holds a value, no operation is performed. SETNX is short for "SET if Not eXists". @param mixed $key @param mixed $value @return Relay|bool
setnx
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand, \DEPTRAC_INTERNAL\Relay\Attributes\Cached] public function mget(array $keys) : Relay|array|false { }
Returns the values of all specified keys. @param array $keys @return Relay|array|false
mget
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function move(mixed $key, int $db) : Relay|int|false { }
Move key from the currently selected database to the specified destination database. @param mixed $key @param int $db @return Relay|int|false
move
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function mset(array $kvals) : Relay|bool { }
Sets the given keys to their respective values. MSET replaces existing values with new values, just as regular SET. @param array $kvals @return Relay|bool
mset
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function msetnx(array $kvals) : Relay|bool { }
Sets the given keys to their respective values. MSETNX will not perform any operation at all even if just a single key already exists. @param array $kvals @return Relay|bool
msetnx
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function rename(mixed $key, mixed $newkey) : Relay|bool { }
Renames key. @param mixed $key @param mixed $newkey @return Relay|bool
rename
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function renamenx(mixed $key, mixed $newkey) : Relay|bool { }
Renames key if the new key does not yet exist. @param mixed $key @param mixed $newkey @return Relay|bool
renamenx
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function del(mixed ...$keys) : Relay|int|bool { }
Removes the specified keys. @param mixed $keys,... @return Relay|int|bool
del
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function unlink(mixed ...$keys) : Relay|int|false { }
Removes the specified keys without blocking Redis. @param mixed $keys,... @return Relay|int
unlink
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function expire(mixed $key, int $seconds, ?string $mode = null) : Relay|bool { }
Set a timeout on key. @param mixed $key @param int $seconds @param string|null $mode @return Relay|bool
expire
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function pexpire(mixed $key, int $milliseconds) : Relay|bool { }
Set a key's time to live in milliseconds. @param mixed $key @param int $milliseconds @return Relay|bool
pexpire
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function expireat(mixed $key, int $timestamp) : Relay|bool { }
Set a timeout on key using a unix timestamp. @param mixed $key @param int $timestamp @return Relay|bool
expireat
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function expiretime(mixed $key) : Relay|int|false { }
Returns the absolute Unix timestamp in seconds at which the given key will expire. If the key exists but doesn't have a TTL this function return -1. If the key does not exist -2. @param mixed $key @return Relay|int|false
expiretime
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function pexpireat(mixed $key, int $timestamp_ms) : Relay|bool { }
Set the expiration for a key as a UNIX timestamp specified in milliseconds. @param mixed $key @param int $timestamp_ms @return Relay|bool
pexpireat
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function pexpiretime(mixed $key) : Relay|int|false { }
Semantic the same as EXPIRETIME, but returns the absolute Unix expiration timestamp in milliseconds instead of seconds. @param mixed $key @return Relay|int|false
pexpiretime
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function persist(mixed $key) : Relay|bool { }
Remove the existing timeout on key, turning the key from volatile to persistent. @param mixed $key @return Relay|bool
persist
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function type(mixed $key) : Relay|int|string|bool { }
Returns the type of a given key. In PhpRedis compatibility mode this will return an integer (one of the REDIS_<type>) constants. Otherwise it will return the string that Redis returns. @param mixed $key @return Relay|int|string|false
type
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function lmove(mixed $srckey, mixed $dstkey, string $srcpos, string $dstpos) : Relay|string|null|false { }
Atomically returns and removes the first/last element of the list stored at source, and pushes the element at the first/last element of the list stored at destination. @param mixed $srckey @param mixed $dstkey @param string $srcpos @param string $dstpos @return Relay|string|null|false
lmove
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function blmove(mixed $srckey, mixed $dstkey, string $srcpos, string $dstpos, float $timeout) : Relay|string|null|false { }
BLMOVE is the blocking variant of LMOVE. When source contains elements, this command behaves exactly like LMOVE. When used inside a MULTI/EXEC block, this command behaves exactly like LMOVE. @param mixed $srckey @param mixed $dstkey @param string $srcpos @param string $dstpos @param float $timeout @return Relay|string|null|false
blmove
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand, \DEPTRAC_INTERNAL\Relay\Attributes\Cached] public function lrange(mixed $key, int $start, int $stop) : Relay|array|false { }
Returns the specified elements of the list stored at key. @param mixed $key @param int $start @param int $stop @return Relay|array|false
lrange
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function lpush(mixed $key, mixed $mem, mixed ...$mems) : Relay|int|false { }
Insert all the specified values at the head of the list stored at key. @param mixed $key @param mixed $mem @param mixed $mems,... @return Relay|int|false
lpush
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function rpush(mixed $key, mixed $mem, mixed ...$mems) : Relay|int|false { }
Insert all the specified values at the tail of the list stored at key. @param mixed $key @param mixed $mem @param mixed $mems,... @return Relay|int|false
rpush
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function lpushx(mixed $key, mixed $mem, mixed ...$mems) : Relay|int|false { }
Inserts specified values at the head of the list stored at key, only if key already exists and holds a list. @param mixed $key @param mixed $mem @param mixed $mems,... @return Relay|int|false
lpushx
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function rpushx(mixed $key, mixed $mem, mixed ...$mems) : Relay|int|false { }
Inserts specified values at the tail of the list stored at key, only if key already exists and holds a list. @param mixed $key @param mixed $mem @param mixed $mems,... @return Relay|int|false
rpushx
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function lset(mixed $key, int $index, mixed $mem) : Relay|bool { }
Sets the list element at index to element. @param mixed $key @param int $index @param mixed $mem @return Relay|bool
lset
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function lpop(mixed $key, int $count = 1) : mixed { }
Removes and returns the first elements of the list stored at key. @param mixed $key @param int $count @return mixed
lpop
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand, \DEPTRAC_INTERNAL\Relay\Attributes\Cached] public function lpos(mixed $key, mixed $value, ?array $options = null) : Relay|int|array|false|null { }
The command returns the index of matching elements inside a Redis list. @param mixed $key @param mixed $value @param array $options @return Relay|int|array|false|null
lpos
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function rpop(mixed $key, int $count = 1) : mixed { }
Removes and returns the last elements of the list stored at key. @param mixed $key @param int $count @return mixed
rpop
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function rpoplpush(mixed $source, mixed $dest) : mixed { }
Atomically returns and removes the last element (tail) of the list stored at source, and pushes the element at the first element (head) of the list stored at destination. @param mixed $source @param mixed $dest @return mixed
rpoplpush
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function brpoplpush(mixed $source, mixed $dest, float $timeout) : mixed { }
Atomically returns and removes the last element (tail) of the list stored at source, and pushes the element at the first element (head) of the list stored at destination. This command will block for an element up to the provided timeout. @param mixed $source @param mixed $dest @param float $timeout @return mixed
brpoplpush
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function blmpop(float $timeout, array $keys, string $from, int $count = 1) : Relay|array|null|false { }
Pop elements from a list, or block until one is available @param float $timeout @param array $keys @param string $from @param int $count @return Relay|array|null|false
blmpop
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function bzmpop(float $timeout, array $keys, string $from, int $count = 1) : Relay|array|null|false { }
Remove and return members with scores in a sorted set or block until one is available @param float $timeout @param array $keys @param string $from @param int $count @return Relay|array|null|false
bzmpop
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function lmpop(array $keys, string $from, int $count = 1) : Relay|array|null|false { }
Pops one or more elements from the first non-empty list key from the list of provided key names. @param array $keys @param string $from @param int $count @return Relay|array|null|false
lmpop
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function zmpop(array $keys, string $from, int $count = 1) : Relay|array|null|false { }
Pops one or more elements, that are member-score pairs, from the first non-empty sorted set in the provided list of key names. @param array $keys @param string $from @param int $count @return Relay|array|null|false
zmpop
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function object(string $op, mixed $key) : mixed { }
This is a container command for object introspection commands. @param string $op @param mixed $key @return mixed
object
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function geopos(mixed $key, mixed ...$members) : Relay|array|false { }
Return the positions (longitude,latitude) of all the specified members of the geospatial index represented by the sorted set at key. @param mixed $key @param mixed $members,... @return Relay|array|false
geopos
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function lrem(mixed $key, mixed $mem, int $count = 0) : Relay|int|false { }
Removes the first count occurrences of elements equal to element from the list stored at key. @param mixed $key @param mixed $mem @param int $count @return Relay|int|false
lrem
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand, \DEPTRAC_INTERNAL\Relay\Attributes\Cached] public function lindex(mixed $key, int $index) : mixed { }
Returns the element at index index in the list stored at key. @param mixed $key @param int $index @return mixed
lindex
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function linsert(mixed $key, string $op, mixed $pivot, mixed $element) : Relay|int|false { }
Inserts element in the list stored at key either before or after the reference value pivot. @param mixed $key @param string $op @param mixed $pivot @param mixed $element @return Relay|int|false
linsert
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function ltrim(mixed $key, int $start, int $end) : Relay|bool { }
Trim an existing list so that it will contain only the specified range of elements specified. @param mixed $key @param int $start @param int $end @return Relay|bool
ltrim
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand, \DEPTRAC_INTERNAL\Relay\Attributes\Cached] public function hget(mixed $hash, mixed $member) : mixed { }
Returns the value associated with field in the hash stored at key. @param mixed $hash @param mixed $member @return mixed
hget
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand, \DEPTRAC_INTERNAL\Relay\Attributes\Cached] public function hstrlen(mixed $hash, mixed $member) : Relay|int|false { }
Returns the string length of the value associated with field in the hash stored at key. @param mixed $hash @param mixed $member @return Relay|int|false
hstrlen
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand, \DEPTRAC_INTERNAL\Relay\Attributes\Cached] public function hgetall(mixed $hash) : Relay|array|false { }
Returns all fields and values of the hash stored at key. @param mixed $hash @return Relay|array|false
hgetall
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand, \DEPTRAC_INTERNAL\Relay\Attributes\Cached] public function hkeys(mixed $hash) : Relay|array|false { }
Returns all field names in the hash stored at key. @param mixed $hash @return Relay|array|false
hkeys
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand, \DEPTRAC_INTERNAL\Relay\Attributes\Cached] public function hvals(mixed $hash) : Relay|array|false { }
Returns all values in the hash stored at key. @param mixed $hash @return Relay|array|false
hvals
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand, \DEPTRAC_INTERNAL\Relay\Attributes\Cached] public function hmget(mixed $hash, array $members) : Relay|array|false { }
Returns the values associated with the specified fields in the hash stored at key. @param mixed $hash @param array $members @return Relay|array|false
hmget
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand, \DEPTRAC_INTERNAL\Relay\Attributes\Cached] public function hrandfield(mixed $hash, ?array $options = null) : Relay|array|string|false { }
When called with just the key argument, return a random field from the hash value stored at key. @param mixed $hash @param array $options @return Relay|array|string|false
hrandfield
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function hmset(mixed $hash, array $members) : Relay|bool { }
Sets the specified fields to their respective values in the hash stored at key. @param mixed $hash @param array $members @return Relay|bool
hmset
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand, \DEPTRAC_INTERNAL\Relay\Attributes\Cached] public function hexists(mixed $hash, mixed $member) : Relay|bool { }
Returns if field is an existing field in the hash stored at key. @param mixed $hash @param mixed $member @return Relay|bool
hexists
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function hsetnx(mixed $hash, mixed $member, mixed $value) : Relay|bool { }
Sets field in the hash stored at key to value, only if field does not yet exist. @param mixed $hash @param mixed $member @param mixed $value @return Relay|bool
hsetnx
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function hset(mixed $key, mixed $mem, mixed $val, mixed ...$kvals) : Relay|int|false { }
Sets field in the hash stored at key to value. @param mixed $key @param mixed $mem @param mixed $val @param mixed $kvals,... @return Relay|int|false
hset
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function hdel(mixed $key, mixed $mem, string ...$mems) : Relay|int|false { }
Removes the specified fields from the hash stored at key. @param mixed $key @param mixed $mem @param string $mems,... @return Relay|int|false
hdel
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function hincrby(mixed $key, mixed $mem, int $value) : Relay|int|false { }
Increments the number stored at field in the hash stored at key by increment. @param mixed $key @param mixed $mem @param int $value @return Relay|int|false
hincrby
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand] public function hincrbyfloat(mixed $key, mixed $mem, float $value) : Relay|float|bool { }
Increment the specified field of a hash stored at key, and representing a floating point number, by the specified increment. @param mixed $key @param mixed $mem @param float $value @return Relay|float|bool
hincrbyfloat
php
deptrac/deptrac
vendor/jetbrains/phpstorm-stubs/relay/Relay.php
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Relay.php
MIT