Commands
- Introduction
- Strings
- Lists
- Sets
- Sorted Sets (ZSets)
- SORTED SETS Introduction
- ZADD
- ZINCRBY
- ZRANGE
- ZRANGESTORE 6.2
- ZLS Ent
- ZREVRANGE
- ZRANGEBYSCORE
- ZREVRANGEBYSCORE
- ZRANGEBYLEX
- ZREVRANGEBYLEX
- ZCARD
- ZLEN Ent
- ZCOUNT
- ZLEXCOUNT
- ZRANK
- ZREVRANK
- ZSCORE
- ZMSCORE 6.2
- ZREM
- ZRM Ent
- ZREMRANGEBYRANK
- ZREMRANGEBYSCORE
- ZREMRANGEBYLEX
- ZUNION 6.2
- ZINTER 6.2
- ZDIFF 6.2
- ZUNIONSTORE
- ZINTERSTORE
- ZDIFFSTORE 6.2
- ZSCAN
- ZPOPMIN 5.0
- ZPOPMAX 5.0
- BZPOPMIN 5.0
- BZPOPMAX 5.0
- ZISMEMBER Ent
- ZRANDMEMBER 6.2
- Hashes
- Streams
- Common Keys
- Recyclebin New
- Bits
- Pub/Sub
- Lua Script
- HyperLogLog(PF)
- Geo
- Connection
- Redis on Windows
redis commands sets smismember
SMISMEMBER
Redis Developer Course | Redis Technical Support | Redis Enterprise Server |
---|
집합에 member가 존재하는지 확인 - 여러 개 가능
사용법은 smismember key member1 member2 이다.
있으면 1을 리턴하고, 없으면 0을 리턴한다.
Example
명령> | sadd myset member1 member2 |
결과> | 2 |
명령> | smismember myset member1 member2 member3 |
결과> |
1) (integer) 1 2) (integer) 1 3) (integer) 0 |
명령문
SMISMEMBER key member [member ...]
- 이 명령은 version 6.2.0 부터 사용할 수 있다.
- 논리적 처리 소요시간은 O(N)이다.
관련 명령 | EXISTS, SISMEMBER |
<< SISMEMBER | SMISMEMBER | SMOVE >> |
---|
Email
답글이 올라오면 이메일로 알려드리겠습니다.