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