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 zsets zmscore
ZMSCORE
Redis Developer Course | Redis Technical Support | Redis Enterprise Server |
---|
member의 score를 리턴 - 여러 개 가능
사용법은 zmscore key member1 member2 이다.
리턴값은 score이다.
Example
명령> | zrange city 0 -1 withscores |
결과> |
0) 50 -> New Delhi 1) 60 -> Seoul 2) 70 -> Beijing 3) 80 -> New York |
명령> | zmscore city Seoul Beijing "New York" |
결과> |
1) "60" 2) "70" 3) "80" |
명령문
ZMSCORE key member [member ...]
- 이 명령은 version 6.2.0 부터 사용할 수 있다.
- 논리적 처리 소요시간은 O(N)이다.
관련 명령 | ZSCORE |
<< ZSCORE | ZMSCORE | ZREM >> |
---|
Email
답글이 올라오면 이메일로 알려드리겠습니다.