Database (Redis)

Database

class Database implements Database (View source)

Methods

void __construct(array $servers = array())

Create a new Redis connection instance.

ClientInterface|null connection(string $name = 'default')

Get a specific Redis connection instance.

mixed command(string $method, array $parameters = array())

Run a command against the Redis database.

void subscribe(array|string $channels, Closure $callback, string $connection = null, string $method = 'subscribe')

Subscribe to a set of given channels for messages.

void psubscribe(array|string $channels, Closure $callback, string $connection = null)

Subscribe to a set of given channels with wildcards.

mixed __call(string $method, array $parameters)

Dynamically make a Redis command.

Details

void __construct(array $servers = array())

Create a new Redis connection instance.

Parameters

array $servers

Return Value

void

ClientInterface|null connection(string $name = 'default')

Get a specific Redis connection instance.

Parameters

string $name

Return Value

ClientInterface|null

mixed command(string $method, array $parameters = array())

Run a command against the Redis database.

Parameters

string $method
array $parameters

Return Value

mixed

void subscribe(array|string $channels, Closure $callback, string $connection = null, string $method = 'subscribe')

Subscribe to a set of given channels for messages.

Parameters

array|string $channels
Closure $callback
string $connection
string $method

Return Value

void

void psubscribe(array|string $channels, Closure $callback, string $connection = null)

Subscribe to a set of given channels with wildcards.

Parameters

array|string $channels
Closure $callback
string $connection

Return Value

void

mixed __call(string $method, array $parameters)

Dynamically make a Redis command.

Parameters

string $method
array $parameters

Return Value

mixed

© Taylor Otwell
Licensed under the MIT License.
Laravel is a trademark of Taylor Otwell.
https://laravel.com/api/5.3/Illuminate/Redis/Database.html

在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号

意见反馈
返回顶部