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