Beispiel #1
0
 public function testDestroy()
 {
     $this->rediska->set('s_123', 'aaa');
     $this->rediska->addToSortedSet('s_sessions', '123', time());
     $reply = $this->saveHandler->destroy('123');
     $this->assertEquals(1, $reply);
     $values = $this->rediska->getSortedSet('s_sessions');
     $this->assertEquals(array(), $values);
     $reply = $this->rediska->get('s_123');
     $this->assertNull($reply);
 }