credis->close(); $this->credis = new Credis_Client('unix://'.realpath(__DIR__).'/redis.sock',0,null,'persistent'); $this->credis->forceStandalone(); //$this->setExpectedException('CredisException','Persistent connections to UNIX sockets are not supported in standalone mode.'); $this->credis->connect(); $this->assertTrue($this->credis->isConnected()); } public function testPersistentConnectionsOnStandAloneTcpConnection() { $this->credis->close(); $this->credis = new Credis_Client('tcp://'.$this->redisConfig[0]['host'] . ':' . $this->redisConfig[0]['port'] . '/persistent'); $this->credis->forceStandalone(); $this->credis->set('key','value'); $this->assertEquals('value',$this->credis->get('key')); } public function testPersistentvsNonPersistent() {$this->assertTrue(true);} public function testStandAloneArgumentsExtra() { $this->assertTrue($this->credis->hMSet('hash', array('field1' => 'value1', 'field2' => 'value2'), 'field3', 'value3')); $this->assertEquals(array('field1' => 'value1', 'field2' => 'value2', 'field3' =>'value3'), $this->credis->hMGet('hash', array('field1','field2','field3'))); } public function testStandAloneMultiPipelineThrowsException() { $this->setExpectedExceptionShim('CredisException','A pipeline is already in use and only one pipeline is supported.'); $this->credis->pipeline()->pipeline(); } }