zmscore(
key: KeyT,
members: List[str]
) → ResponseT
ZMSCORE(
key: RedisArgument,
member: RedisVariadicArgument
) → Any
zmscore(
key: byte[],
members: byte[]...
) → List<Double> // The scores
zmscore(
key: String,
members: String...
) → List<Double> // The scores
zmscore(
key: K, // the key.
members: V... // the member type: value.
) → List<Double> // List<Double> array-reply list of scores or nil associated with the specified member values. @since 6.1
zmscore(
key: K, // the key.
members: V... // the member type: value.
) → RedisFuture<List<Double>> // List<Double> array-reply list of scores or nil associated with the specified member values. @since 6.1
zmscore(
key: K, // the key.
members: V... // the member type: value.
) → Mono<List<Double>> // Double array-reply list of scores or nil associated with the specified member values. @since 6.1
ZMScore(
ctx: context.Context,
key: string,
members: ...string
) → *FloatSliceCmd
SortedSetScores(
key: RedisKey, // The key of the sorted set.
members: RedisValue[], // <remarks></remarks>
flags: CommandFlags // The flags to use for this operation.
) → double?[] // array. If a member does not exist in the set, null is returned.
SortedSetScores(
key: RedisKey, // The key of the sorted set.
members: RedisValue[], // <remarks></remarks>
flags: CommandFlags // The flags to use for this operation.
) → double?[] // array. If a member does not exist in the set, null is returned.
SortedSetScores(
key: RedisKey, // The key of the sorted set.
members: RedisValue[], // <remarks></remarks>
flags: CommandFlags // The flags to use for this operation.
) → double?[] // array. If a member does not exist in the set, null is returned.
SortedSetScores(
key: RedisKey, // The key of the sorted set.
members: RedisValue[], // <remarks></remarks>
flags: CommandFlags // The flags to use for this operation.
) → double?[] // array. If a member does not exist in the set, null is returned.
zmscore(
$key: string,
$member: string ...
) → array
zscore_multiple(
key: K,
members: &'a [M]
) → (Option<Vec<f64>>)
zscore_multiple(
key: K,
members: &'a [M]
) → (Option<Vec<f64>>)