Esempio n. 1
0
 public function testRemoveByScore()
 {
     $this->rediska->addToSortedSet('test', 123, 1);
     $this->rediska->addToSortedSet('test', 456, 2);
     $this->rediska->addToSortedSet('test', 789, 3);
     $count = $this->set->removeByScore(0, 2);
     $this->assertEquals(2, $count);
     $values = $this->set->toArray();
     $this->assertEquals(789, $values[0]);
 }