ZSCORE

Usage:
ZSCORE key member
Complexity:
O(1)
Since:
1.2.0

Returns the score of member in the sorted set at key.

If member does not exist in the sorted set, or key does not exist, nil is returned.

Examples

ZADD myzset 1 "one"
ZSCORE myzset "one"