type
TYPE
Redis Developer Course | Redis Technical Support | Redis Enterprise Server |
---|
key의 data type을 조회
사용법은 type key 이다.
data type : string, list, set, zset, hash
Example
명령> | set mystr value string |
결과> | OK |
명령> | type mystr |
결과> | string |
명령> | lpush mylist value list |
결과> | 1 |
명령> | type mylist |
결과> | list |
명령> | sadd myset value set |
결과> | 1 |
명령> | type myset |
결과> | set |
명령> | zadd myzset value zset(Sorted Set) |
결과> | 1 |
명령> | type myzset |
결과> | zset |
명령> | hset myhash 0 value hash |
결과> | 1 |
명령> | type myhash |
결과> | hash |
명령문
TYPE key
- 이 명령은 version 1.0.0 부터 사용할 수 있다.
- 논리적 처리 소요시간은 O(1)이다.
관련 명령 | OBJECT |
Clients for Java | Jedis, Lettuce, Redisson | Clients for C | Hiredis |
<< PERSISTS | TYPE | OBJECT >> |
---|
Email
답글이 올라오면 이메일로 알려드리겠습니다.