fsth/redis-client
Composer 安装命令:
composer require fsth/redis-client
包简介
redis client.
README 文档
README
a redis contains reconnect
usage
$this->client = new Client($this->host, $this->port);
$this->proxy = new Proxy($this->client);
$this->proxy->setLogger(new FakeLogger());
$this->proxy->set('hello', 'world');
$this->assertEquals($this->proxy->get('hello'), 'world');
$this->proxy->del('hello');
$this->assertEmpty($this->proxy->get('hello'));
$error = "";
$this->proxy->disconnect();
try {
$this->proxy->set('hello', 'world');
} catch (\Exception $e) {
$error = $e->getMessage();
}
$this->assertEmpty($error);
$this->client->set('hello', 'world');
$this->assertEquals($this->proxy->get('hello'), 'world');
统计信息
- 总下载量: 251
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 2
- 依赖项目数: 2
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-10-19