class RedisManager implements Factory mixin Connection (View source)

Properties

protected string $driver

The name of the default driver.

protected array $config

The Redis server configurations.

protected mixed $connections

The Redis connections.

Methods

void
__construct(string $driver, array $config)

Create a new Redis manager instance.

connection(string $name = null)

Get a Redis connection by name.

resolve(string|null $name = null)

Resolve the given connection by name.

resolveCluster(string $name)

Resolve the given cluster connection by name.

connector()

Get the connector instance for the current driver.

array
connections()

Return all of the created connections.

mixed
__call(string $method, array $parameters)

Pass methods onto the default Redis connection.

Details

void __construct(string $driver, array $config)

Create a new Redis manager instance.

Parameters

string $driver
array $config

Return Value

void

Connection connection(string $name = null)

Get a Redis connection by name.

Parameters

string $name

Return Value

Connection

Connection resolve(string|null $name = null)

Resolve the given connection by name.

Parameters

string|null $name

Return Value

Connection

Exceptions

InvalidArgumentException

protected Connection resolveCluster(string $name)

Resolve the given cluster connection by name.

Parameters

string $name

Return Value

Connection

protected PhpRedisConnector|PredisConnector connector()

Get the connector instance for the current driver.

array connections()

Return all of the created connections.

Return Value

array

mixed __call(string $method, array $parameters)

Pass methods onto the default Redis connection.

Parameters

string $method
array $parameters

Return Value

mixed