Méthode |
Description |
|
getArgument ( integer $index ) : mixed | null |
Gets the argument of the command at the specified index. |
|
getArguments ( ) : array |
Gets the arguments of the command. |
|
getId ( ) : string |
Returns the ID of the Redis command. By convention, command identifiers
must always be uppercase. |
|
getSlot ( ) : integer | null |
Returns the assigned slot of the command for clustering distribution. |
|
parseResponse ( string $data ) : mixed |
Parses a raw response and returns a PHP object. |
|
setArguments ( array $arguments ) |
Sets the arguments for the command. |
|
setRawArguments ( array $arguments ) |
Sets the raw arguments for the command without processing them. |
|
setSlot ( integer $slot ) |
Assign the specified slot to the command for clustering distribution. |
|