Esempio n. 1
0
 /**
  * @group redis-strings
  */
 public function testStringLength()
 {
     $this->assertSame(0, $this->client->strlen('foo'));
     $this->client->set('foo', 'bar');
     $this->assertSame(3, $this->client->strlen('foo'));
 }