Пример #1
0
 /**
  * {@inheritDoc}
  */
 public function incr($key)
 {
     return $this->predis->incr($key);
 }
Пример #2
0
 /**
  * @group redis-strings
  */
 public function testIncrement()
 {
     $this->assertEquals(1, $this->client->incr('foo'));
     $this->assertEquals(2, $this->client->incr('foo'));
 }