예제 #1
0
파일: ListType.php 프로젝트: ig-hit/redis
 /**
  * @param $key
  * @param int $start
  * @param int $end
  * @return array
  */
 public function get($key, $start = 0, $end = -1)
 {
     return $this->client->lRange($key, $start, $end);
 }