[Redis] List

List

list는 Array와 유사한 자료구조이며 다음과 같은 특징을 가진다.

  1. 기본적으로 String 타입의 경우 배열에 저장할 수 있는 데이터 크기는 512MB이다
  2. Head와 Tail을 통한 삽입 삭제가 O(1)이다

Command

  • LRANGE [key] [min index] [max index]
  • LPUSH / RPUSH [key] [value]
  • LPOP / RPOP [key]
  • LLEN [key]
  • LINDEX [key] [index]
  • LSET [key] [index] [value]
  • LINSERT [key] before [exsist value] [insert value]
Author: Song Hayoung
Link: https://songhayoung.github.io/2020/07/18/Redis/list/
Copyright Notice: All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.