hls
HLS
Redis Developer Course | Redis Technical Support | Redis Enterprise Server |
---|
필드명에 패턴(pattern)으로 필드/값(value) 조회
사용법은 hls key field 입니다.
Field에 glob-style pattern을 사용할 수 있습니다.
- * : 모든 문자 매치(match): h*llo -> hllo, heeeello, etc
- ? : 1개 문자 매치(match): h?llo -> hallo, hello, hxllo, etc
- [alphabet] : 대괄호 안에 있는 문자 매치(match): h[ae]llo -> hallo, hello
- [^e] : 대괄호 안에 있는 문자 제외하고 매치(match):
h[^e]llo -> hallo, hbllo, ... 그러나 hello는 제외됨.
- [a-c] : 대괄호 안에 있는 문자 범위로 매치(match): h[a-c]llo -> hallo, hbllo, hcllo
- \ : 위에 사용한 특수문자(*?[^])를 그대로 사용하려면 앞에 \를 붙이세요.
Example
명령> | hset myhash field1 value1 field2 value2 |
결과> | 2 |
명령> | hls myhash * |
결과> |
1) "field1" 2) "value1" 3) "field2" 4) "value2" |
명령> | hls myhash field1* |
결과> |
1) field1 2) value1 |
소트 기능
Sort 또는 asc를 사용하면 오름차순(ascending) 정렬, desc를 사용하면 내림차순(descending) 정렬됩니다. 필드명으로 소트합니다.
Example
명령> | hls myhash * desc |
결과> |
1) "field2" 2) "value2" 3) "field1" 4) "value1" |
명령문
HLS key field-pattern [sort|asc|desc]
- 이 명령은 Enterprise version 6.1.0 부터 사용할 수 있다.
- 논리적 처리 소요시간은 O(N)입니다. N은 데이터 개수이다.
- 값의 개수가 많으면 성능에 영향을 미칠 수 있으니 주의해서 사용하세요.
<< HGETALL | HLS | HSTRLEN >> |
---|
Email
답글이 올라오면 이메일로 알려드리겠습니다.