redis\Connection $redisCommands

$redisCommands public property List of available redis commands http://redis.io/commands public array $redisCommands = ['BLPOP', 'BRPOP', 'BRPOPLPUSH', 'CLIENT KILL', 'CLIENT LIST', 'CLIENT GETNAME', 'CLIENT SETNAME', 'CONFIG GET', 'CONFIG SET', 'CONFIG RESETSTAT', 'DBSIZE', 'DEBUG OBJECT', 'DEBUG SEGFAULT', 'DECR', 'DECRBY', 'DEL', 'DISCARD', 'DUMP', 'ECHO', 'EVAL', 'EVALSHA', 'EXEC', 'EXISTS', 'EXPIRE', 'EXPIREAT', 'FLUSHALL', 'FLUSHDB', 'GET', 'GETBIT', 'GETRANGE', 'GETSET', 'HDEL', 'HE

redis\Connection $port

$port public property The port to use for connecting to the redis server. Default port is 6379. If $unixSocket is specified, hostname and port will be ignored. public integer $port = 6379

redis\Connection $password

$password public property The password for establishing DB connection. Defaults to null meaning no AUTH command is send. See http://redis.io/commands/auth public string $password = null

redis\Connection $luaScriptBuilder

$luaScriptBuilder public read-only property public yii\redis\LuaScriptBuilder getLuaScriptBuilder ( )

redis\Connection $isActive

$isActive public read-only property Whether the DB connection is established public boolean getIsActive ( )

redis\Connection $hostname

$hostname public property The hostname or ip address to use for connecting to the redis server. Defaults to 'localhost'. If $unixSocket is specified, hostname and port will be ignored. public string $hostname = 'localhost'

redis\Connection $driverName

$driverName public read-only property Name of the DB driver public string getDriverName ( )

redis\Connection $dataTimeout

$dataTimeout public property Timeout to use for redis socket when reading and writing data. If not set the php default value will be used. public float $dataTimeout = null

redis\Connection $database

$database public property The redis database to use. This is an integer value starting from 0. Defaults to 0. Since version 2.0.6 you can disable the SELECT command sent after connection by setting this property to null. public integer $database = 0

redis\Connection $connectionTimeout

$connectionTimeout public property Timeout to use for connection to redis. If not set the timeout set in php.ini will be used: ini_get("default_socket_timeout") public float $connectionTimeout = null