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 |
---|---|---|---|---|---|---|---|
#[Pure]
#[TentativeType]
public function getDeclaringClass() : \ReflectionClass
{
}
|
Gets declaring class
@link https://php.net/manual/en/reflectionproperty.getdeclaringclass.php
@return ReflectionClass A {@see ReflectionClass} object.
|
getDeclaringClass
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionProperty.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionProperty.php
|
MIT
|
#[Pure]
#[TentativeType]
public function getDocComment() : string|false
{
}
|
Gets doc comment
@link https://php.net/manual/en/reflectionproperty.getdoccomment.php
@return string|false The doc comment if it exists, otherwise {@see false}
|
getDocComment
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionProperty.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionProperty.php
|
MIT
|
#[PhpStormStubsElementAvailable(to: "8.0")]
#[TentativeType]
public function setAccessible(#[LanguageLevelTypeAware(['8.0' => 'bool'], default: '')] $accessible) : void
{
}
|
Set property accessibility
@link https://php.net/manual/en/reflectionproperty.setaccessible.php
@param bool $accessible A boolean {@see true} to allow accessibility, or {@see false}
@return void No value is returned.
|
setAccessible
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionProperty.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionProperty.php
|
MIT
|
#[Pure]
#[PhpStormStubsElementAvailable(from: "8.1")]
#[TentativeType]
public function setAccessible(bool $accessible) : void
{
}
|
Set property accessibility
This method is no-op starting from PHP 8.1
@link https://php.net/manual/en/reflectionproperty.setaccessible.php
@param bool $accessible A boolean {@see true} to allow accessibility, or {@see false}
@return void No value is returned.
|
setAccessible
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionProperty.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionProperty.php
|
MIT
|
#[Pure]
#[LanguageLevelTypeAware(['8.0' => 'ReflectionNamedType|ReflectionUnionType|null', '8.1' => 'ReflectionNamedType|ReflectionUnionType|ReflectionIntersectionType|null'], default: 'ReflectionNamedType|null')]
#[TentativeType]
public function getType() : ?\ReflectionType
{
}
|
Gets property type
@link https://php.net/manual/en/reflectionproperty.gettype.php
@return ReflectionNamedType|ReflectionUnionType|null Returns a {@see ReflectionType} if the
property has a type, and {@see null} otherwise.
@since 7.4
|
getType
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionProperty.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionProperty.php
|
MIT
|
#[TentativeType]
public function hasType() : bool
{
}
|
Checks if property has type
@link https://php.net/manual/en/reflectionproperty.hastype.php
@return bool Returns {@see true} if a type is specified, {@see false} otherwise.
@since 7.4
|
hasType
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionProperty.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionProperty.php
|
MIT
|
#[Pure]
#[TentativeType]
public function isInitialized(?object $object = null) : bool
{
}
|
Checks if property is initialized
@link https://php.net/manual/en/reflectionproperty.isinitialized.php
@param object|null $object If the property is non-static an object must be provided to fetch the property from.
@return bool Returns {@see false} for typed properties prior to initialization, and for properties that have
been explicitly {@see unset()}. For all other properties {@see true} will be returned.
@since 7.4
|
isInitialized
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionProperty.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionProperty.php
|
MIT
|
#[Pure]
public function isPromoted() : bool
{
}
|
Returns information about whether the property was promoted.
@return bool Returns {@see true} if the property was promoted or {@see false} instead.
@since 8.0
|
isPromoted
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionProperty.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionProperty.php
|
MIT
|
#[PhpStormStubsElementAvailable(from: "5.4", to: "8.0")]
private final function __clone() : void
{
}
|
Clone
@link https://php.net/manual/en/reflectionproperty.clone.php
@return void
|
__clone
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionProperty.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionProperty.php
|
MIT
|
#[PhpStormStubsElementAvailable(from: "8.1")]
private function __clone() : void
{
}
|
Clone
@link https://php.net/manual/en/reflectionproperty.clone.php
@return void
|
__clone
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionProperty.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionProperty.php
|
MIT
|
#[Pure]
public function getId() : string
{
}
|
Returns unique identifier for the reference. The return value format is unspecified
@link https://php.net/manual/en/reflectionreference.getid.php
@return int|string Returns an integer or string of unspecified format.
|
getId
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionReference.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionReference.php
|
MIT
|
#[TentativeType]
public function allowsNull() : bool
{
}
|
Checks if null is allowed
@link https://php.net/manual/en/reflectiontype.allowsnull.php
@return bool Returns {@see true} if {@see null} is allowed, otherwise {@see false}
@since 7.0
|
allowsNull
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionType.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionType.php
|
MIT
|
#[Pure]
public function isBuiltin()
{
}
|
Checks if it is a built-in type
@link https://php.net/manual/en/reflectionnamedtype.isbuiltin.php
@return bool Returns {@see true} if it's a built-in type, otherwise {@see false}
@since 7.0
@removed 8.0 this method has been removed from the {@see ReflectionType}
class and moved to the {@see ReflectionNamedType} child.
|
isBuiltin
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionType.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionType.php
|
MIT
|
#[Deprecated(since: "7.1")]
public function __toString() : string
{
}
|
To string
@link https://php.net/manual/en/reflectiontype.tostring.php
@return string Returns the type of the parameter.
@since 7.0
@see ReflectionNamedType::getName()
|
__toString
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionType.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionType.php
|
MIT
|
#[PhpStormStubsElementAvailable(from: "5.4", to: "8.0")]
private final function __clone() : void
{
}
|
Cloning of this class is prohibited
@return void
|
__clone
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionType.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionType.php
|
MIT
|
#[PhpStormStubsElementAvailable(from: "8.1")]
private function __clone() : void
{
}
|
Cloning of this class is prohibited
@return void
|
__clone
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionType.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionType.php
|
MIT
|
#[Pure]
#[LanguageLevelTypeAware(['8.2' => 'ReflectionNamedType[]|ReflectionIntersectionType[]'], default: 'ReflectionNamedType[]')]
public function getTypes() : array
{
}
|
Get list of types of union type
@return ReflectionNamedType[]|ReflectionIntersectionType[]
|
getTypes
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionUnionType.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionUnionType.php
|
MIT
|
#[TentativeType]
public function __toString() : string
{
}
|
To string handler
@link https://php.net/manual/en/reflectionzendextension.tostring.php
@return string
@since 5.4
|
__toString
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionZendExtension.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionZendExtension.php
|
MIT
|
#[Pure]
#[TentativeType]
public function getName() : string
{
}
|
Gets name
@link https://php.net/manual/en/reflectionzendextension.getname.php
@return string
@since 5.4
|
getName
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionZendExtension.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionZendExtension.php
|
MIT
|
#[Pure]
#[TentativeType]
public function getVersion() : string
{
}
|
Gets version
@link https://php.net/manual/en/reflectionzendextension.getversion.php
@return string
@since 5.4
|
getVersion
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionZendExtension.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionZendExtension.php
|
MIT
|
#[Pure]
#[TentativeType]
public function getAuthor() : string
{
}
|
Gets author
@link https://php.net/manual/en/reflectionzendextension.getauthor.php
@return string
@since 5.4
|
getAuthor
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionZendExtension.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionZendExtension.php
|
MIT
|
#[Pure]
#[TentativeType]
public function getURL() : string
{
}
|
Gets URL
@link https://php.net/manual/en/reflectionzendextension.geturl.php
@return string
@since 5.4
|
getURL
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionZendExtension.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionZendExtension.php
|
MIT
|
#[PhpStormStubsElementAvailable(from: "5.4", to: "8.0")]
private final function __clone() : void
{
}
|
Clone handler
@link https://php.net/manual/en/reflectionzendextension.clone.php
@return void
@since 5.4
|
__clone
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionZendExtension.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionZendExtension.php
|
MIT
|
#[PhpStormStubsElementAvailable(from: "8.1")]
private function __clone() : void
{
}
|
Clone handler
@link https://php.net/manual/en/reflectionzendextension.clone.php
@return void
@since 5.4
|
__clone
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionZendExtension.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/Reflection/ReflectionZendExtension.php
|
MIT
|
#[Deprecated(reason: "Use preg_match() instead", since: "5.3")]
function ereg($pattern, $string, ?array &$regs = null)
{
}
|
Regular expression match
@link https://php.net/manual/en/function.ereg.php
@param string $pattern <p>
Case sensitive regular expression.
</p>
@param string $string <p>
The input string.
</p>
@param null|array &$regs [optional] <p>
If matches are found for parenthesized substrings of
<i>pattern</i> and the function is called with the
third argument <i>regs</i>, the matches will be stored
in the elements of the array <i>regs</i>.
</p>
<p>
$regs[1] will contain the substring which starts at
the first left parenthesis; $regs[2] will contain
the substring starting at the second, and so on.
$regs[0] will contain a copy of the complete string
matched.
</p>
@return int the length of the matched string if a match for
<i>pattern</i> was found in <i>string</i>,
or <b>FALSE</b> if no matches were found or an error occurred.
</p>
<p>
If the optional parameter <i>regs</i> was not passed or
the length of the matched string is 0, this function returns 1.
@removed 7.0
@see preg_match()
|
ereg
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/regex/ereg.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/regex/ereg.php
|
MIT
|
#[Deprecated(reason: "Use preg_replace() instead", since: "5.3")]
function ereg_replace($pattern, $replacement, $string)
{
}
|
Replace regular expression
@link https://php.net/manual/en/function.ereg-replace.php
@param string $pattern <p>
A POSIX extended regular expression.
</p>
@param string $replacement <p>
If <i>pattern</i> contains parenthesized substrings,
<i>replacement</i> may contain substrings of the form
\digit, which will be
replaced by the text matching the digit'th parenthesized substring;
\0 will produce the entire contents of string.
Up to nine substrings may be used. Parentheses may be nested, in which
case they are counted by the opening parenthesis.
</p>
@param string $string <p>
The input string.
</p>
@return string The modified string is returned. If no matches are found in
<i>string</i>, then it will be returned unchanged.
@removed 7.0
@see preg_replace()
|
ereg_replace
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/regex/ereg.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/regex/ereg.php
|
MIT
|
#[Deprecated(reason: "Use preg_match() instead", since: "5.3")]
function eregi($pattern, $string, array &$regs = null)
{
}
|
Case insensitive regular expression match
@link https://php.net/manual/en/function.eregi.php
@param string $pattern <p>
Case insensitive regular expression.
</p>
@param string $string <p>
The input string.
</p>
@param null|array &$regs [optional] <p>
If matches are found for parenthesized substrings of
<i>pattern</i> and the function is called with the
third argument <i>regs</i>, the matches will be stored
in the elements of the array <i>regs</i>.
</p>
<p>
$regs[1] will contain the substring which starts at the first left
parenthesis; $regs[2] will contain the substring starting at the
second, and so on. $regs[0] will contain a copy of the complete string
matched.
</p>
@return int the length of the matched string if a match for
<i>pattern</i> was found in <i>string</i>,
or <b>FALSE</b> if no matches were found or an error occurred.
</p>
<p>
If the optional parameter <i>regs</i> was not passed or
the length of the matched string is 0, this function returns 1.
@removed 7.0
@see preg_match()
|
eregi
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/regex/ereg.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/regex/ereg.php
|
MIT
|
#[Deprecated(reason: "Use preg_replace() instead", since: "5.3")]
function eregi_replace($pattern, $replacement, $string)
{
}
|
Replace regular expression case insensitive
@link https://php.net/manual/en/function.eregi-replace.php
@param string $pattern <p>
A POSIX extended regular expression.
</p>
@param string $replacement <p>
If <i>pattern</i> contains parenthesized substrings,
<i>replacement</i> may contain substrings of the form
\digit, which will be
replaced by the text matching the digit'th parenthesized substring;
\0 will produce the entire contents of string.
Up to nine substrings may be used. Parentheses may be nested, in which
case they are counted by the opening parenthesis.
</p>
@param string $string <p>
The input string.
</p>
@return string The modified string is returned. If no matches are found in
<i>string</i>, then it will be returned unchanged.
@removed 7.0
@see preg_replace()
|
eregi_replace
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/regex/ereg.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/regex/ereg.php
|
MIT
|
#[Deprecated(since: '5.3')]
function sql_regcase($string)
{
}
|
Make regular expression for case insensitive match
@link https://php.net/manual/en/function.sql-regcase.php
@param string $string <p>
The input string.
</p>
@return string a valid regular expression which will match
<i>string</i>, ignoring case. This expression is
<i>string</i> with each alphabetic character converted to
a bracket expression; this bracket expression contains that character's
uppercase and lowercase form. Other characters remain unchanged.
@removed 7.0
|
sql_regcase
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/regex/ereg.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/regex/ereg.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\Server]
public function __construct(string|null $name, array|null $seeds = null, int|float $connect_timeout = 0, int|float $command_timeout = 0, bool $persistent = \false, #[\SensitiveParameter] mixed $auth = null, array|null $context = null)
{
}
|
Create a cluster object.
@param string|null $name
@param array|null $seeds
@param int|float $connect_timeout
@param int|float $command_timeout
@param mixed $auth
@param array|null $context
|
__construct
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\Local]
public function _compress(string $value) : string
{
}
|
Compress data with Relay's currently configured compression algorithm.
@param string $value
@return string
|
_compress
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\Local]
public function _masters() : array
{
}
|
Return a list of master nodes
@return array
|
_masters
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\Local]
public function _pack(mixed $value) : string
{
}
|
Returns the serialized and compressed value.
@param mixed $value
@return string
|
_pack
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\Local]
public function _prefix(mixed $value) : string
{
}
|
Returns the value with the prefix.
@param mixed $value
@return string
|
_prefix
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\Local]
public function _serialize(mixed $value) : string
{
}
|
Returns the serialized value.
@param mixed $value
@return string
|
_serialize
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\Local]
public function _uncompress(string $value) : string
{
}
|
Uncompress data with Relay's currently configured compression algorithm.
@param string $value
@return string
|
_uncompress
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\Local]
public function _unpack(string $value) : mixed
{
}
|
Returns the unserialized and decompressed value.
@param string $value
@return mixed
|
_unpack
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\Local]
public function _unserialize(string $value) : mixed
{
}
|
Returns the unserialized value.
@param string $value
@return mixed
|
_unserialize
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand]
public function acl(array|string $key_or_address, string $operation, string ...$args) : mixed
{
}
|
Interact with Redis' ACLs
@param string $operation
@param string $args,...
@return mixed
|
acl
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand]
public function append(mixed $key, mixed $value) : Cluster|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 Cluster|int|false
|
append
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand]
public function bgrewriteaof(array|string $key_or_address) : Cluster|bool
{
}
|
Asynchronously rewrite the append-only file.
@param array|string $key_or_address
@return Cluster|bool
|
bgrewriteaof
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand]
public function bgsave(array|string $key_or_address, bool $schedule = \false) : Cluster|bool
{
}
|
Asynchronously save the dataset to disk.
@param array|string $key_or_address
@param bool $schedule
@return Cluster|bool
|
bgsave
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.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) : Cluster|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 Cluster|int|false
|
bitcount
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand]
public function bitop(string $operation, string $dstkey, string $srckey, string ...$other_keys) : Cluster|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 Cluster|int|false
|
bitop
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand]
public function bitpos(mixed $key, int $bit, int $start = null, int $end = null, bool $by_bit = \false) : Cluster|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 $by_bit
@return Cluster|int|false
|
bitpos
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand]
public function blmove(mixed $srckey, mixed $dstkey, string $srcpos, string $dstpos, float $timeout) : Cluster|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 Cluster|string|null|false
|
blmove
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand]
public function blmpop(float $timeout, array $keys, string $from, int $count = 1) : mixed
{
}
|
Pop elements from a list, or block until one is available
@param float $timeout
@param array $keys
@param string $from
@param int $count
@return Cluster|array|null|false
|
blmpop
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand]
public function brpoplpush(mixed $srckey, mixed $dstkey, 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 $srckey
@param mixed $dstkey
@param float $timeout
@return mixed
|
brpoplpush
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand]
public function bzmpop(float $timeout, array $keys, string $from, int $count = 1) : Cluster|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 Cluster|array|null|false
|
bzmpop
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\Local]
public function clearLastError() : bool
{
}
|
Clears the last error that is set, if any.
@return bool
|
clearLastError
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand]
public function client(array|string $key_or_address, string $operation, mixed ...$args) : mixed
{
}
|
Executes `CLIENT` command operations.
@param array|string $key_or_address
@param string $operation
@param mixed $args,...
@return mixed
|
client
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\Local]
public function close() : bool
{
}
|
Closes the current connection, if it's persistent.
@return bool
|
close
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand]
public function cluster(array|string $key_or_address, string $operation, mixed ...$args) : mixed
{
}
|
Executes `CLUSTER` command operations.
@param array|string $key_or_address
@param string $operation
@param mixed $args,...
@return mixed
|
cluster
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand]
public function config(array|string $key_or_address, string $operation, mixed ...$args) : mixed
{
}
|
This is a container command for runtime configuration commands.
@param array|string $key_or_address
@param string $operation
@param mixed $args,...
@return Cluster|array|bool
|
config
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand]
public function command(mixed ...$args) : Cluster|array|int|false
{
}
|
Return an array with details about every Redis command.
@param array $args,...
@return Cluster|array|int|false
|
command
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand]
public function copy(mixed $srckey, mixed $dstkey, array|null $options = null) : Cluster|int|false
{
}
|
This command copies the value stored at the source key to the destination key.
@param mixed $srckey
@param mixed $dstkey
@param array|null $options
@return Cluster|int|false
|
copy
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand]
public function dbsize(array|string $key_or_address) : Cluster|int|false
{
}
|
Returns the number of keys in the currently-selected database.
@return Cluster|int|false
|
dbsize
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand]
public function decr(mixed $key, int $by = 1) : Cluster|int|false
{
}
|
Decrements the number stored at key by one.
@param mixed $key
@param int $by
@return Cluster|int|false
|
decr
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand]
public function decrby(mixed $key, int $value) : Cluster|int|false
{
}
|
Decrements the number stored at key by decrement.
@param mixed $key
@param int $value
@return Cluster|int|false
|
decrby
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand]
public function del(mixed ...$keys) : Cluster|int|bool
{
}
|
Removes the specified keys.
@param mixed $keys,...
@return Cluster|int|bool
|
del
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand]
public function discard() : bool
{
}
|
Flushes all previously queued commands in a transaction and restores the connection state to normal.
If WATCH was used, DISCARD unwatches all keys watched by the connection.
@return bool
|
discard
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand]
public function dump(mixed $key) : Cluster|string|false
{
}
|
Serialize and return the value stored at key in a Redis-specific format.
@param mixed $key
@return Cluster|string|false
|
dump
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand]
public function echo(array|string $key_or_address, string $message) : Cluster|string|false
{
}
|
Asks Redis to echo back the provided string.
@param array|string $key_or_address
@param string $message
@return Cluster|string|false
|
echo
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.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/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.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/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.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/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.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/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand]
public function exec() : array|false
{
}
|
Executes all previously queued commands in a transaction and restores the connection state to normal.
@return array|false
|
exec
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand, \DEPTRAC_INTERNAL\Relay\Attributes\Cached]
public function exists(mixed ...$keys) : Cluster|int|bool
{
}
|
Returns if key(s) exists.
@param mixed $keys,...
@return Cluster|int|bool
|
exists
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand]
public function expire(mixed $key, int $seconds, string|null $mode = null) : Cluster|bool
{
}
|
Set a timeout on key.
@param mixed $key
@param int $seconds
@param string|null $mode
@return Cluster|bool
|
expire
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand]
public function expireat(mixed $key, int $timestamp) : Cluster|bool
{
}
|
Set a timeout on key using a unix timestamp.
@param mixed $key
@param int $timestamp
@return Cluster|bool
|
expireat
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand]
public function expiretime(mixed $key) : Cluster|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 Cluster|int|false
|
expiretime
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand]
public function flushall(array|string $key_or_address, bool|null $sync = null) : Cluster|bool
{
}
|
Deletes all the keys of all the existing databases, not just the currently selected one.
@param array|string $key_or_address
@param bool|null $sync
@return Cluster|bool
|
flushall
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand]
public function flushdb(array|string $key_or_address, bool|null $sync = null) : Cluster|bool
{
}
|
Deletes all the keys of the currently selected database.
@param array|string $key_or_address
@param bool|null $sync
@return Cluster|bool
|
flushdb
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand]
public function geoadd(mixed $key, float $lng, float $lat, string $member, mixed ...$other_triples_and_options) : Cluster|int|false
{
}
|
Add one or more members to a geospacial sorted set
@param mixed $key
@param float $lng
@param float $lat
@param string $member
@param mixed $other_triples_and_options,...
@return Cluster|int|false
|
geoadd
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand]
public function geodist(mixed $key, string $src, string $dst, string|null $unit = null) : Cluster|float|false
{
}
|
Get the distance between two members of a geospacially encoded sorted set.
@param mixed $key
@param string $src
@param string $dst
@param string|null $unit
@return Cluster|float|false
|
geodist
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand]
public function geohash(mixed $key, string $member, string ...$other_members) : Cluster|array|false
{
}
|
Retrieve one or more GeoHash encoded strings for members of the set.
@param mixed $key
@param string $member
@param string $other_members,...
@return Cluster|array|false
|
geohash
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand]
public function geopos(mixed $key, mixed ...$members) : Cluster|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 Cluster|array|false
|
geopos
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand]
public function georadius(mixed $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 mixed $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/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand]
public function georadius_ro(mixed $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 mixed $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/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand]
public function georadiusbymember(mixed $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 mixed $key
@param string $member
@param float $radius
@param string $unit
@param array $options
@return mixed
|
georadiusbymember
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand]
public function georadiusbymember_ro(mixed $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 mixed $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/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand]
public function geosearch(mixed $key, array|string $position, array|int|float $shape, string $unit, array $options = []) : Cluster|array
{
}
|
Search a geospacial sorted set for members in various ways.
@param mixed $key
@param array|string $position
@param array|int|float $shape
@param string $unit
@param array $options
@return Cluster|array
|
geosearch
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand]
public function geosearchstore(mixed $dstkey, mixed $srckey, array|string $position, array|int|float $shape, string $unit, array $options = []) : Cluster|int|false
{
}
|
Search a geospacial sorted set for members within a given area or range, storing the results into
a new set.
@param mixed $dstkey
@param mixed $srckey
@param array|string $position
@param array|int|float $shape
@param string $unit
@param array $options
@return Cluster|int|false
|
geosearchstore
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.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/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand, \DEPTRAC_INTERNAL\Relay\Attributes\Cached]
public function getbit(mixed $key, int $pos) : Cluster|int|false
{
}
|
Returns the bit value at offset in the string value stored at key.
@param mixed $key
@param int $pos
@return Cluster|int|false
|
getbit
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\Local]
public function getLastError() : string|null
{
}
|
Returns the last error message, if any.
@return string|null
|
getLastError
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\Local]
public function getMode(bool $masked = \false) : int
{
}
|
Get the mode Relay is currently in.
`Relay::ATOMIC` or `Relay::MULTI`.
@param bool $masked
@return int
|
getMode
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\Local]
public function getOption(int $option) : mixed
{
}
|
Returns a client option.
@param int $option
@return mixed
|
getOption
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand, \DEPTRAC_INTERNAL\Relay\Attributes\Cached]
public function getrange(mixed $key, int $start, int $end) : Cluster|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 Cluster|string|false
|
getrange
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.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/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand]
public function hdel(mixed $key, mixed $member, mixed ...$members) : Cluster|int|false
{
}
|
Removes the specified fields from the hash stored at key.
@param mixed $key
@param mixed $member
@param string $members,...
@return Cluster|int|false
|
hdel
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand, \DEPTRAC_INTERNAL\Relay\Attributes\Cached]
public function hexists(mixed $key, mixed $member) : Cluster|bool
{
}
|
Returns if field is an existing field in the hash stored at key.
@param mixed $key
@param mixed $member
@return Cluster|bool
|
hexists
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand, \DEPTRAC_INTERNAL\Relay\Attributes\Cached]
public function hget(mixed $key, mixed $member) : mixed
{
}
|
Returns the value associated with field in the hash stored at key.
@param mixed $key
@param mixed $member
@return mixed
|
hget
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand, \DEPTRAC_INTERNAL\Relay\Attributes\Cached]
public function hgetall(mixed $key) : Cluster|array|false
{
}
|
Returns all fields and values of the hash stored at key.
@param mixed $key
@return Cluster|array|false
|
hgetall
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand]
public function hincrby(mixed $key, mixed $member, int $value) : Cluster|int|false
{
}
|
Increments the number stored at field in the hash stored at key by increment.
@param mixed $key
@param mixed $member
@param int $value
@return Cluster|int|false
|
hincrby
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand]
public function hincrbyfloat(mixed $key, mixed $member, float $value) : Cluster|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 $member
@param float $value
@return Cluster|float|bool
|
hincrbyfloat
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand, \DEPTRAC_INTERNAL\Relay\Attributes\Cached]
public function hkeys(mixed $key) : Cluster|array|false
{
}
|
Returns all field names in the hash stored at key.
@param mixed $key
@return Cluster|array|false
|
hkeys
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand, \DEPTRAC_INTERNAL\Relay\Attributes\Cached]
public function hlen(mixed $key) : Cluster|int|false
{
}
|
Returns the number of fields contained in the hash stored at `$key`.
@param mixed $key
@return Cluster|int|false
|
hlen
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
#[\DEPTRAC_INTERNAL\Relay\Attributes\RedisCommand, \DEPTRAC_INTERNAL\Relay\Attributes\Cached]
public function hmget(mixed $key, array $members) : Cluster|array|false
{
}
|
Returns the values associated with the specified fields in the hash stored at key.
@param mixed $key
@param array $members
@return Cluster|array|false
|
hmget
|
php
|
deptrac/deptrac
|
vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
https://github.com/deptrac/deptrac/blob/master/vendor/jetbrains/phpstorm-stubs/relay/Cluster.php
|
MIT
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.