PHP 인터페이스 Predis\ClientContextInterface

저자: Daniele Alessandri ([email protected])
파일 보기 프로젝트 열기: tillkruss/redis-object-cache

공개 메소드들

메소드 설명
__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