예제 #1
0
파일: PredisTest.php 프로젝트: gmo/cache
 /**
  * @group redis-hashes
  */
 public function testHashMultipleGet()
 {
     $expected = array('hello' => 'world', 'red' => 'blue', 'herp' => 'derp');
     $this->client->hmset('foo', $expected);
     $this->assertEquals(array('world', 'blue'), $this->client->hmget('foo', array('hello', 'red')));
 }