Chapter 5. LIST 명령
Last updated
Last updated
List collection에 관한 명령은 아래와 같다.
List collection 삭제: delete (기존 key-value item의 삭제 명령을 그대로 사용)
List element에 관한 명령은 아래와 같다.
List collection을 empty 상태로 생성한다.
<key> - 대상 item의 key string
<attributes> - 설정할 item attributes. Item Attribute 설명을 참조 바란다.
unreadable - 명시하면, readable 속성은 off로 설정됩니다.
noreply - 명시하면, response string을 전달받지 않는다.
Response string과 그 의미는 아래와 같다.
Response String | 설명 |
---|---|
List collection에 하나의 element를 삽입한다. List collection을 생성하면서 하나의 element를 삽입할 수도 있다.
<key> - 대상 item의 key string
<index> - 삽입 위치를 0-based index로 지정.
0, 1, 2, ... : list의 앞에서 시작하여 각 element 위치를 나타냄
-1, -2, -3, ... : list의 뒤에서 시작하여 각 element 위치를 나타냄
<bytes> - 삽입할 데이터 길이 (trailing 문자인 "\r\n"을 제외한 길이)
create <attributes> - list collection 없을 시에 list 생성 요청. Item Attribute 설명을 참조 바란다.
unreadable - 명시하면, readable 속성은 off로 설정됩니다.
noreply or pipe - 명시하면, response string을 전달받지 않는다. pipe 사용은 Command Pipelining을 참조 바란다.
<data> - 삽입할 데이터 (최대 크기는 기본제약사항을 참고)
Response string과 그 의미는 아래와 같다.
List collection에 하나의 index 또는 index range에 해당하는 elements를 삭제한다.
<key> - 대상 item의 key string
<index or "index range"> - 삭제할 element의 index or index range. Element index는 "lop insert" 명령에서 소개한 바와 같이 0-based index 형태로 지정하며, index range는 index1..index2 형태로 표현하여, 그 예는 다음과 같다.
0..-1: 첫째 element부터 마지막 element까지 (forward 순서)
2..-2: 앞의 3번째 element부터 뒤의 2번째 element까지 (forward 순서)
-3..-1: 뒤의 3번째 element부터 뒤의 1번째 element까지 (forward 순서)
4..2 : 앞의 5번째 element 부터 앞의 3번째 element까지 (backward 순서)
-1..0: 마지막 element 부터 첫째 element 까지 (backward 순서)
drop - element 삭제로 인해 empty list가 될 경우, 그 list를 drop할 것인지를 지정한다.
noreply or pipe - 명시하면, response string을 전달받지 않는다. pipe 사용은 Command Pipelining을 참조 바란다.
Response string과 그 의미는 아래와 같다.
List collection에 하나의 index 또는 index range에 해당하는 elements를 조회한다.
<key> - 대상 item의 key string
<index or "index range"> - 조회할 element의 index or index range. "lop delete" 명령의 인자 참조
delete or drop - element 조회하면서 그 element를 delete할 것인지, 그리고 delete로 인해 empty list가 될 경우 그 list를 drop할 것인지를 지정한다.
성공 시의 response string은 아래와 같다. VALUE 라인의 <count>는 조회된 element 개수를 의미한다. 마지막 라인은 END, DELETED, DELETED_DROPPED 중의 하나를 가지며, 각각 element 조회만 수행한 상태, element 조회하고 삭제한 상태, element 조회 및 삭제하고 list를 drop한 상태를 의미한다.
실패 시의 response string과 그 의미는 아래와 같다.
Response String | 설명 |
---|---|
Response String | 설명 |
---|---|
Response String | 설명 |
---|---|
"CREATED"
성공
"EXISTS"
동일 key string을 가진 item이 이미 존재
"NOT_SUPPORTED"
지원하지 않음
“CLIENT_ERROR bad command line format”
protocol syntax 틀림
“SERVER_ERROR out of memory”
메모리 부족
"STORED"
성공 (element만 삽입)
“CREATED_STORED”
성공 (collection 생성하고 element 삽입)
“NOT_FOUND”
key miss
“TYPE_MISMATCH”
해당 item이 list collection이 아님
“OVERFLOWED”
overflow 발생
“OUT_OF_RANGE”
삽입 위치가 list의 현재 element index 범위를 넘어섬. 예를 들어, 10개 element가 있는 상태에서 삽입 위치가 20인 경우임
"NOT_SUPPORTED"
지원하지 않음
“CLIENT_ERROR bad command line format”
protocol syntax 틀림
“CLIENT_ERROR too large value”
삽입할 데이터가 element value의 최대 크기보다 큼
“CLIENT_ERROR bad data chunk”
삽입할 데이터 길이가 <bytes>와 다르거나 "\r\n"으로 끝나지 않음
“SERVER_ERROR out of memory”
메모리 부족
"DELETED"
성공 (element만 삭제)
“DELETED_DROPPED”
성공 (element 삭제하고 list를 drop한 상태)
“NOT_FOUND”
key miss
“NOT_FOUND_ELEMENT”
element miss (single index or index range에 해당하는 element가 없음)
“TYPE_MISMATCH”
해당 item이 list collection이 아님
"NOT_SUPPORTED"
지원하지 않음
“CLIENT_ERROR bad command line format”
protocol syntax 틀림
“NOT_FOUND”
key miss
“NOT_FOUND_ELEMENT”
element miss (index or index range에 해당하는 element가 없음)
“TYPE_MISMATCH”
해당 item이 list collection이 아님
“UNREADABLE”
해당 item이 unreadable item임
"NOT_SUPPORTED"
지원하지 않음
“CLIENT_ERROR bad command line format”
protocol syntax 틀림
"SERVER_ERROR out of memory [writing get response]”
메모리 부족