PHP Интерфейс Predis\ClientContextInterface

Автор: Daniele Alessandri ([email protected])
Показать файл Открыть проект

Открытые методы

Метод Описание
__call ( string $method, array $arguments ) : mixed Sends the specified command with its arguments to Redis.
execute ( mixed $callable = null ) : array Starts the execution of the context.
executeCommand ( Predis\Command\CommandInterface $command ) : mixed Sends the specified command instance to Redis.

Описание методов

__call() публичный Метод

Sends the specified command with its arguments to Redis.
public __call ( string $method, array $arguments ) : mixed
$method string Command ID.
$arguments array Arguments for the command.
Результат mixed

execute() публичный Метод

Starts the execution of the context.
public execute ( mixed $callable = null ) : array
$callable mixed Optional callback for execution.
Результат array

executeCommand() публичный Метод

Sends the specified command instance to Redis.
public executeCommand ( Predis\Command\CommandInterface $command ) : mixed
$command Predis\Command\CommandInterface Command instance.
Результат mixed