当前位置: 首页>>代码示例>>PHP>>正文


PHP Redis::mget方法代码示例

本文整理汇总了PHP中Redis::mget方法的典型用法代码示例。如果您正苦于以下问题:PHP Redis::mget方法的具体用法?PHP Redis::mget怎么用?PHP Redis::mget使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Redis的用法示例。


在下文中一共展示了Redis::mget方法的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: get

 /**
  * 取得数据,支持批量取
  *
  * @param string/array $key
  * @return mixed
  */
 public function get($key)
 {
     $this->_connect();
     $time = microtime(1);
     if (is_array($key)) {
         # redis多取
         if ($this->prefix) {
             foreach ($key as &$k) {
                 $k = $this->prefix . $k;
             }
         }
         $return = $this->_redis->mget($key);
         foreach ($return as &$item) {
             $this->_de_format_data($item);
         }
     } else {
         $return = $this->_redis->get($key);
         $this->_de_format_data($return);
     }
     $time = microtime(1) - $time;
     if (false === $return) {
         Core::debug()->warn($key, 'cache redis mis key');
         Core::debug()->info($time, 'use time');
         return false;
     } else {
         Core::debug()->info($key, 'cache redis hit key');
         Core::debug()->info($time, 'use time');
     }
     return $return;
 }
开发者ID:xiaodin1,项目名称:myqee,代码行数:36,代码来源:redis.class.php

示例2: testDifferentTypeHash

 public function testDifferentTypeHash()
 {
     $key = '{hash}hash';
     $dkey = '{hash}hash';
     $this->redis->del($key);
     $this->assertEquals(1, $this->redis->hSet($key, 'key', 'value'));
     // string I/F
     $this->assertEquals(FALSE, $this->redis->get($key));
     $this->assertEquals(FALSE, $this->redis->getset($key, 'value2'));
     $this->assertEquals(FALSE, $this->redis->append($key, 'append'));
     $this->assertEquals(FALSE, $this->redis->getRange($key, 0, 8));
     $this->assertEquals(array(FALSE), $this->redis->mget(array($key)));
     $this->assertEquals(FALSE, $this->redis->incr($key));
     $this->assertEquals(FALSE, $this->redis->incrBy($key, 1));
     $this->assertEquals(FALSE, $this->redis->decr($key));
     $this->assertEquals(FALSE, $this->redis->decrBy($key, 1));
     // lists I/F
     $this->assertEquals(FALSE, $this->redis->rPush($key, 'lvalue'));
     $this->assertEquals(FALSE, $this->redis->lPush($key, 'lvalue'));
     $this->assertEquals(FALSE, $this->redis->lLen($key));
     $this->assertEquals(FALSE, $this->redis->lPop($key));
     $this->assertEquals(FALSE, $this->redis->lrange($key, 0, -1));
     $this->assertEquals(FALSE, $this->redis->lTrim($key, 0, 1));
     $this->assertEquals(FALSE, $this->redis->lGet($key, 0));
     $this->assertEquals(FALSE, $this->redis->lSet($key, 0, "newValue"));
     $this->assertEquals(FALSE, $this->redis->lrem($key, 'lvalue', 1));
     $this->assertEquals(FALSE, $this->redis->lPop($key));
     $this->assertEquals(FALSE, $this->redis->rPop($key));
     $this->assertEquals(FALSE, $this->redis->rPoplPush($key, $dkey . 'lkey1'));
     // sets I/F
     $this->assertEquals(FALSE, $this->redis->sAdd($key, 'sValue1'));
     $this->assertEquals(FALSE, $this->redis->srem($key, 'sValue1'));
     $this->assertEquals(FALSE, $this->redis->sPop($key));
     $this->assertEquals(FALSE, $this->redis->sMove($key, $dkey . 'skey1', 'sValue1'));
     $this->assertEquals(FALSE, $this->redis->scard($key));
     $this->assertEquals(FALSE, $this->redis->sismember($key, 'sValue1'));
     $this->assertEquals(FALSE, $this->redis->sInter($key, $dkey . 'skey2'));
     $this->assertEquals(FALSE, $this->redis->sUnion($key, $dkey . 'skey4'));
     $this->assertEquals(FALSE, $this->redis->sDiff($key, $dkey . 'skey7'));
     $this->assertEquals(FALSE, $this->redis->sMembers($key));
     $this->assertEquals(FALSE, $this->redis->sRandMember($key));
     // sorted sets I/F
     $this->assertEquals(FALSE, $this->redis->zAdd($key, 1, 'zValue1'));
     $this->assertEquals(FALSE, $this->redis->zRem($key, 'zValue1'));
     $this->assertEquals(FALSE, $this->redis->zIncrBy($key, 1, 'zValue1'));
     $this->assertEquals(FALSE, $this->redis->zRank($key, 'zValue1'));
     $this->assertEquals(FALSE, $this->redis->zRevRank($key, 'zValue1'));
     $this->assertEquals(FALSE, $this->redis->zRange($key, 0, -1));
     $this->assertEquals(FALSE, $this->redis->zRevRange($key, 0, -1));
     $this->assertEquals(FALSE, $this->redis->zRangeByScore($key, 1, 2));
     $this->assertEquals(FALSE, $this->redis->zCount($key, 0, -1));
     $this->assertEquals(FALSE, $this->redis->zCard($key));
     $this->assertEquals(FALSE, $this->redis->zScore($key, 'zValue1'));
     $this->assertEquals(FALSE, $this->redis->zRemRangeByRank($key, 1, 2));
     $this->assertEquals(FALSE, $this->redis->zRemRangeByScore($key, 1, 2));
 }
开发者ID:Jerry-Shaw,项目名称:phpredis,代码行数:56,代码来源:RedisTest.php

示例3: mget

 /**
  * {@inheritdoc}
  */
 public function mget(array $keys)
 {
     $result = array();
     $keys = array_values($keys);
     $values = $this->redis->mget($keys);
     foreach ($values as $i => $value) {
         if ($value !== false) {
             $result[$keys[$i]] = $value;
         }
     }
     return $result;
 }
开发者ID:lingualeo,项目名称:php-cache,代码行数:15,代码来源:RedisCache.php

示例4: testMsetNX

 public function testMsetNX()
 {
     $this->redis->delete('x', 'y', 'z');
     // remove x y z
     $this->assertTrue(TRUE === $this->redis->msetnx(array('x' => 'a', 'y' => 'b', 'z' => 'c')));
     // set x y z
     $this->assertEquals($this->redis->mget(array('x', 'y', 'z')), array('a', 'b', 'c'));
     // check x y z
     $this->redis->delete('x');
     // delete just x
     $this->assertTrue(FALSE === $this->redis->msetnx(array('x' => 'A', 'y' => 'B', 'z' => 'C')));
     // set x y z
     $this->assertEquals($this->redis->mget(array('x', 'y', 'z')), array(FALSE, 'b', 'c'));
     // check x y z
     $this->assertFalse($this->redis->msetnx(array()));
     // set ø → FALSE
 }
开发者ID:0,项目名称:phpredis,代码行数:17,代码来源:TestRedis.php

示例5: untag

 /**
  * @param string $keys
  *
  * @return bool
  */
 public function untag($keys)
 {
     if (!is_array($keys)) {
         $keys = array($keys);
     }
     $nsTagsKeys = $this->applyNamespace($keys, 'tags');
     $serializedTagsList = $this->client->mget($nsTagsKeys);
     $tagsList = array_map(array($this, 'deserialize'), $serializedTagsList);
     $tags = call_user_func_array('array_merge', $tagsList);
     $tags = array_unique($tags);
     $nsTags = $this->applyNamespace($tags, 'tag');
     foreach ($nsTags as $nsTag) {
         $this->client->sRem($nsTag, $keys);
         call_user_func_array(array($this->client, 'sRem'), array_merge(array($nsTag), $keys));
     }
     return $this->client->del($nsTagsKeys);
 }
开发者ID:mihai-stancu,项目名称:cache-bundle,代码行数:22,代码来源:RedisClient.php

示例6: testMset

 public function testMset()
 {
     $this->redis->delete('x', 'y', 'z');
     // remove x y z
     $this->assertTrue($this->redis->mset(array('x' => 'a', 'y' => 'b', 'z' => 'c')));
     // set x y z
     $this->assertEquals($this->redis->mget(array('x', 'y', 'z')), array('a', 'b', 'c'));
     // check x y z
     $this->redis->delete('x');
     // delete just x
     $this->assertTrue($this->redis->mset(array('x' => 'a', 'y' => 'b', 'z' => 'c')));
     // set x y z
     $this->assertEquals($this->redis->mget(array('x', 'y', 'z')), array('a', 'b', 'c'));
     // check x y z
     $this->assertFalse($this->redis->mset(array()));
     // set ø → FALSE
 }
开发者ID:virtulis,项目名称:phpredis,代码行数:17,代码来源:TestRedis.php

示例7: index

 public function index()
 {
     \Redis::set('name', 'alegriaghost');
     $name = \Redis::get('name');
     \Redis::del('name');
     \Debugbar::info($name);
     \Debugbar::warning($name);
     \Debugbar::error($name);
     \Debugbar::addMessage($name, '$name');
     var_dump($name);
     \Redis::set('name1', 'alegriaghost1');
     \Redis::set('name2', 'alegriaghost2');
     \Redis::set('name3', 'alegriaghost3');
     $list = Redis::keys('*');
     $values = Redis::mget($list);
     var_dump($list);
     var_dump($values);
 }
开发者ID:alegriaghost,项目名称:sample-program.based-laravel,代码行数:18,代码来源:SampleController.php

示例8: get

 /**
  * 取得数据,支持批量取
  *
  * @param string/array $key
  * @return mixed
  */
 public function get($key)
 {
     $this->_connect();
     if (is_array($key)) {
         # redis多取
         $return = $this->_redis->mget($key);
         foreach ($return as &$item) {
             Cache_Driver_Redis::_de_format_data($item);
         }
     } else {
         $return = $this->_redis->get($key);
         Cache_Driver_Redis::_de_format_data($return);
     }
     if (false === $return) {
         Core::debug()->error($key, 'redis mis key');
         return false;
     } else {
         Core::debug()->info($key, 'redis hit key');
     }
     return $return;
 }
开发者ID:google2013,项目名称:myqeecms,代码行数:27,代码来源:Redis.class.php

示例9: mget

 /**
  * mGet cache
  *
  * @param	array	Cache ID Array
  * @return	mixed
  */
 public function mget($keys)
 {
     return $this->_redis->mget($keys);
 }
开发者ID:asmenglei,项目名称:lanxiao,代码行数:10,代码来源:Cache_redis.php

示例10: test4Action

 public function test4Action()
 {
     $redis = new Redis();
     $redis->connect("127.0.0.1", "6379");
     //php客户端设置的ip及端口
     //存储一个 值
     $redis->set("say", "Hello World");
     echo $redis->get("say");
     //应输出Hello World
     //存储多个值
     $array = array('first_key' => 'first_val', 'second_key' => 'second_val', 'third_key' => 'third_val');
     $array_get = array('first_key', 'second_key', 'third_key');
     $redis->mset($array);
     var_dump($redis->mget($array_get));
     die;
 }
开发者ID:musicsnap,项目名称:Cdoco_Yaf_Ext,代码行数:16,代码来源:Index.php


注:本文中的Redis::mget方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。