예제 #1
0
 /**
  * {@inheritDoc}
  */
 public function llen($key)
 {
     return $this->predis->llen($key);
 }
예제 #2
0
파일: PredisTest.php 프로젝트: gmo/cache
 /**
  * @group redis-lists
  */
 public function testListLength()
 {
     $this->assertSame(0, $this->client->llen('foo'));
     $this->client->rpush('foo', 'A', 'B', 'C');
     $this->assertSame(3, $this->client->llen('foo'));
 }