ZMSCORE
Syntax
        ZMSCORE key member [member ...]
- Available since:
 - 6.2.0
 - Time complexity:
 - O(N) where N is the number of members being requested.
 - ACL categories:
 - 
              
                
@read,@sortedset,@fast, 
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
RESP2 Reply
One of the following:
- Nil reply: if the member does not exist in the sorted set.
 - Array reply: a list of Bulk string reply member scores as double-precision floating point numbers.
 
RESP3 Reply
One of the following:
- Null reply: if the member does not exist in the sorted set.
 - Array reply: a list of Double reply member scores as double-precision floating point numbers.