ZMSCORE

Usage:
ZMSCORE key member [ member ...]
Complexity:
O(N) where N is the number of members being requested.
Since:
6.2.0

Returns the scores associated with the specified members in the sorted set stored at key.

For every member that does not exist in the sorted set, a nil value is returned.

Examples

ZADD myzset 1 "one"
ZADD myzset 2 "two"
ZMSCORE myzset "one" "two" "nofield"