本文整理汇总了PHP中Predis\Client::flushall方法的典型用法代码示例。如果您正苦于以下问题:PHP Client::flushall方法的具体用法?PHP Client::flushall怎么用?PHP Client::flushall使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Predis\Client
的用法示例。
在下文中一共展示了Client::flushall方法的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: clear_redis_cache
/**
* Flush all keys in Redis
*/
public function clear_redis_cache()
{
$redis_host = config('database.redis.default.host');
$redis_port = config('database.redis.default.port');
$this->info('Clearing the Redis Cache at: ' . $redis_host . ':' . $redis_port);
try {
$redis = new Client(['host' => $redis_host, 'port' => $redis_port]);
$redis->flushall();
$redis->disconnect();
} catch (Exception $e) {
$this->error('Failed to clear the Redis Cache. Error: ' . $e->getMessage());
}
return;
}
示例2: flush
/**
* {@inheritdoc}
*
* @return \Orno\Cache\Adapter\RedisAdapter
*/
public function flush()
{
$this->redis->flushall();
return $this;
}
示例3: tearDown
public function tearDown()
{
$this->client->flushall();
}
示例4: removeAll
/**
* remove all
*
* @return bool
*/
public function removeAll()
{
return $this->client->flushall();
}
示例5: tearDown
protected function tearDown()
{
$client = new Client();
$client->flushall();
}
示例6: flushRedis
/**
* @BeforeScenario
*/
public function flushRedis()
{
$this->redis->flushall();
}