예제 #1
0
 /**
  * {@inheritDoc}
  */
 public function flushdb()
 {
     return $this->predis->flushdb();
 }
예제 #2
0
 /**
  * {@inheritdoc}
  */
 protected function doFlush()
 {
     $response = $this->client->flushdb();
     return $response === true || $response == 'OK';
 }
예제 #3
0
파일: PredisTest.php 프로젝트: gmo/cache
 protected function tearDown()
 {
     parent::tearDown();
     $this->client->flushdb();
 }