コード例 #1
0
ファイル: PredisBridge.php プロジェクト: php-resque/resque
 /**
  * {@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'));
 }