EXISTS

Redis Developer Course Redis Technical Support Redis Enterprise Server

키(key)가 존재하는지 확인

사용법은 exists key [type] 이다.
키(key)가 있으면 1, 없으면 0을 리턴한다.
📍 type은 string/list/set/zset/hash/stream 중 하나입니다.
      ent811부터 type이 추가되었습니다. 꼭 사용하시기 바랍니다.

Example

명령>set key value
결과>1
명령>exists key string
결과>1
명령>exists xxx string
결과>0
명령>exists key list
결과>0

명령문

EXISTS key [key ...] [type]

  • 이 명령은 version 1.0.0 부터 사용할 수 있다.
  • 논리적 처리 소요시간은 O(1)이다.
  • 버전 3.0.3부터 key를 여러 개 사용할 수 있습니다.
  • ent811 type 추가.
관련 명령 KEYS, TYPE, SISMEMBER, HEXISTS
Clients for Java Jedis, Lettuce, Redisson
Clients for C Hiredis

<< COMMON Introduction EXISTS UNLINK >>

Email 답글이 올라오면 이메일로 알려드리겠습니다.