Exemplo n.º 1
0
 /**
  * @return mixed
  */
 public function flushDb()
 {
     try {
         return $this->client->flushDb();
     } catch (Exception $e) {
         return $this->handleException($e, __FUNCTION__, func_get_args());
     }
 }
Exemplo n.º 2
0
 /**
  * @return mixed
  */
 public function flushDb()
 {
     $this->appendToLog('FLUSHDB');
     return $this->client->flushDb();
 }
Exemplo n.º 3
0
 public function flushDb()
 {
     return $this->redis->flushDb();
 }