當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Client::hmget方法代碼示例

本文整理匯總了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;
 }
開發者ID:nonconforme,項目名稱:aggregator,代碼行數:17,代碼來源:RedisAggregator.php

示例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;
 }
開發者ID:inhere,項目名稱:php-librarys,代碼行數:20,代碼來源:Redis.php

示例3: getSessionsByUserIds

 /**
  * @param array $userIds
  * @return array
  */
 public function getSessionsByUserIds(array $userIds) : array
 {
     return array_values($this->redis->hmget(RedisClientInterface::ID_SESSION_HASH, $userIds));
 }
開發者ID:samizdam,項目名稱:Kingdom,代碼行數:8,代碼來源:UserService.php


注:本文中的Predis\Client::hmget方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。