本文整理汇总了PHP中Predis\Client::createCommand方法的典型用法代码示例。如果您正苦于以下问题:PHP Client::createCommand方法的具体用法?PHP Client::createCommand怎么用?PHP Client::createCommand使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Predis\Client
的用法示例。
在下文中一共展示了Client::createCommand方法的8个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: set
/**
* * Add a value to the cache under a unique key
*
* @param string $key
* @param mixed $value
* @param int $ttl
*/
public function set($key, $value, $ttl = null)
{
$this->client->set($key, $value);
if ($ttl) {
$cmd = $this->client->createCommand('EXPIRE');
$cmd->setArguments(array($key, $ttl));
$this->client->executeCommand($cmd);
}
}
示例2: set
/**
* {@inheritdoc}
*/
public function set($key, $value, $ttl = null)
{
$this->predis->set($key, $this->pack($value));
if (!$ttl) {
$ttl = $this->ttl;
}
$cmd = $this->predis->createCommand('EXPIRE');
$cmd->setArguments([$key, $ttl]);
$this->predis->executeCommand($cmd);
}
示例3: doIncrement
/**
* @param string $cmd The command
* @param Counter|string $counter The counter
* @param int $value The value
*
* @return Counter
*/
protected function doIncrement($cmd, $counter, $value)
{
$counter = $this->transformCounter($counter);
$cmd = $this->client->createCommand($cmd, array($counter->getName(), $value));
$value = (int) $this->client->executeCommand($cmd);
return new Counter($counter->getName(), $value);
}
示例4: getIdsByAnyTags
/**
* @param string[] $tags
* @return string[] Ids
*/
public function getIdsByAnyTags(array $tags)
{
$command = $this->redis->createCommand('sunion', $this->getIdsForTagKeys($tags));
$response = $this->redis->executeCommand($command);
if ($response instanceof ResponseErrorInterface) {
return null;
}
return $response;
}
示例5: execute
/**
* Execute commands
*
* @param string $command
* @param array $parameters
*
* @return mixed
*/
public function execute($command, $parameters = array())
{
try {
$cmdSet = $this->client->createCommand($command, $parameters);
return $this->client->executeCommand($cmdSet);
} catch (\Exception $e) {
$this->exception = $e;
return false;
}
}
示例6: testCreatesNewCommandUsingSpecifiedProfile
/**
* @group disconnected
*/
public function testCreatesNewCommandUsingSpecifiedProfile()
{
$ping = ServerProfile::getDefault()->createCommand('ping', array());
$profile = $this->getMock('Predis\\Profile\\ServerProfileInterface');
$profile->expects($this->once())->method('createCommand')->with('ping', array())->will($this->returnValue($ping));
$client = new Client(null, array('profile' => $profile));
$this->assertSame($ping, $client->createCommand('ping', array()));
}
示例7: clear
/**
* clear all redis cache.
*/
public function clear()
{
$this->redis->executeCommand($this->redis->createCommand('FLUSHALL'));
}
示例8: executeCommand
/**
* Execute a Predis command
*
* @param string $name
* @param array $arguments
* @return mixed
*/
protected function executeCommand($name, array $arguments)
{
$command = $this->client->createCommand($name, $arguments);
return $this->client->executeCommand($command);
}