示例#1
0
 /**
  * {@inheritDoc}
  */
 public function decr($key)
 {
     return $this->predis->decr($key);
 }
示例#2
0
文件: PredisTest.php 项目: gmo/cache
 /**
  * @group redis-strings
  */
 public function testDecrement()
 {
     $this->assertEquals(-1, $this->client->decr('foo'));
     $this->assertEquals(-2, $this->client->decr('foo'));
 }