本文整理匯總了PHP中Predis\Client::hmget方法的典型用法代碼示例。如果您正苦於以下問題:PHP Client::hmget方法的具體用法?PHP Client::hmget怎麽用?PHP Client::hmget使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類Predis\Client
的用法示例。
在下文中一共展示了Client::hmget方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: find
/**
* {@inheritDoc}
*/
public function find(array $sources, $limit = 25, $offset = 0)
{
call_user_func_array([$this->redis, 'zunionstore'], array_merge([$key = sha1(microtime()), count($sources)], array_map(function ($source) {
return "aggregator:sources:{$source}";
}, $sources)));
$identifiers = $this->redis->zrevrange($key, $offset, $offset + $limit - 1);
$this->redis->del($key);
$items = $this->redis->hmget('aggregator:objects', $identifiers);
foreach ($items as &$item) {
$item = json_decode($item, true);
$item['timestamp'] = \DateTime::createFromFormat('U', $item['timestamp']);
}
return $items;
}
示例2: htGetMulti
/**
* 獲取hash table指定的一些字段的信息
* @param $key
* @param array $fields
* @param bool $valToInt 將所有的值轉成int,在將hash table做為計數器時有用
* @return array
*/
public function htGetMulti($key, array $fields, $valToInt = false)
{
$data = $this->redis->hmget($key, $fields);
if ($data && class_exists('\\Predis\\Client') && is_subclass_of($this->redis, '\\Predis\\ClientInterface')) {
$data = array_combine($fields, $data);
}
if ($valToInt) {
array_walk($data, function (&$val) {
$val = (int) $val;
});
}
return $data;
}
示例3: getSessionsByUserIds
/**
* @param array $userIds
* @return array
*/
public function getSessionsByUserIds(array $userIds) : array
{
return array_values($this->redis->hmget(RedisClientInterface::ID_SESSION_HASH, $userIds));
}