ZSCORE

Redis Developer Course Redis Technical Support Redis Enterprise Server

member의 score를 리턴

사용법은 zscore key member 이다. 리턴값은 score이다.

Example

명령>zrange city 0 -1 withscores
결과> 0) 50 -> New Delhi
1) 60 -> Seoul
2) 70 -> Beijing
3) 80 -> New York
명령>zscore city "Seoul"
결과>60
명령>zscore city "New York"
결과>80

애니메이션 보기



명령문

ZSCORE key member

  • 이 명령은 version 1.2.0 부터 사용할 수 있다.
  • 논리적 처리 소요시간은 O(1)이다.
관련 명령 ZRANGEBYSCORE, ZREVRANGEBYSCORE, ZREMRANGEBYSCORE
Clients for Java Jedis, Lettuce, Redisson
Clients for C Hiredis

<< ZREVRANK ZSCORE ZMSCORE >>

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