zrem(
name: KeyT,
*values: FieldT
) → ResponseT
ZREM(
key: RedisArgument,
member: RedisVariadicArgument
) → Any
zrem(
key: byte[],
members: byte[]...
) → long // 1 if the new element was removed, 0 if the new element was not a member of the set
zrem(
key: String,
members: String...
) → long // 1 if the new element was removed, 0 if the new element was not a member of the set
zrem(
key: K, // the key.
members: V... // the member type: value.
) → Long // Long integer-reply specifically: The number of members removed from the sorted set, not including non existing members.
zrem(
key: K, // the key.
members: V... // the member type: value.
) → RedisFuture<Long> // Long integer-reply specifically: The number of members removed from the sorted set, not including non existing members.
zrem(
key: K, // the key.
members: V... // the member type: value.
) → Mono<Long> // Long integer-reply specifically: The number of members removed from the sorted set, not including non existing members.
ZRem(
ctx: context.Context,
key: string,
members: ...interface{}
) → *IntCmd
SortedSetRemove(
key: RedisKey, // The key of the sorted set.
member: RedisValue,
flags: CommandFlags // The flags to use for this operation.
) → bool // The number of members removed from the sorted set, not including non existing members.
SortedSetRemove(
key: RedisKey, // The key of the sorted set.
members: RedisValue[], // The members to remove.
flags: CommandFlags // The flags to use for this operation.
) → long // The number of members removed from the sorted set, not including non existing members.
SortedSetRemove(
key: Any, // The key of the sorted set.
member: Any,
flags: Any // The flags to use for this operation.
) → return // The number of members removed from the sorted set, not including non existing members.
SortedSetRemove(
key: RedisKey, // The key of the sorted set.
member: RedisValue,
flags: CommandFlags // The flags to use for this operation.
) → bool // The number of members removed from the sorted set, not including non existing members.
SortedSetRemove(
key: RedisKey, // The key of the sorted set.
members: RedisValue[], // The members to remove.
flags: CommandFlags // The flags to use for this operation.
) → long // The number of members removed from the sorted set, not including non existing members.
SortedSetRemove(
key: RedisKey, // The key of the sorted set.
member: RedisValue,
flags: CommandFlags // The flags to use for this operation.
) → bool // The number of members removed from the sorted set, not including non existing members.
SortedSetRemove(
key: RedisKey, // The key of the sorted set.
members: RedisValue[], // The members to remove.
flags: CommandFlags // The flags to use for this operation.
) → long // The number of members removed from the sorted set, not including non existing members.
SortedSetRemove(
key: Any, // The key of the sorted set.
member: Any,
flags: Any // The flags to use for this operation.
) → return // The number of members removed from the sorted set, not including non existing members.
SortedSetRemove(
key: RedisKey, // The key of the sorted set.
member: RedisValue,
flags: CommandFlags // The flags to use for this operation.
) → bool // The number of members removed from the sorted set, not including non existing members.
SortedSetRemove(
key: RedisKey, // The key of the sorted set.
members: RedisValue[], // The members to remove.
flags: CommandFlags // The flags to use for this operation.
) → long // The number of members removed from the sorted set, not including non existing members.
zrem(
$key: string,
$member: string ...
) → int
zrem(
key: K,
members: M
) → (usize)
zrem(
key: K,
members: M
) → (usize)