Example #1
0
 public function test_zRange()
 {
     $this->assertEquals('zrange key 5 10', $this->redis->zRange('key', 5, 10));
     $this->assertEquals('zrange key 5 10 withscores', $this->redis->zRange('key', 5, 10, true));
 }