sismember(
name: KeyT,
value: str
) → Union[Awaitable[Union[Literal[0], Literal[1]]], Union[Literal[0], Literal[1]]]
SISMEMBER(
key: RedisArgument,
member: RedisArgument
) → Any
sismember(
key: byte[],
member: byte[]
) → boolean // true if the element is a member of the set, false otherwise
sismember(
key: String,
member: String
) → boolean // true if the element is a member of the set, false otherwise
sismember(
key: K, // the key.
member: V // the member type: value.
) → Boolean // Boolean integer-reply specifically: true if the element is a member of the set. false if the element is not a member of the set, or if key does not exist.
sismember(
key: K, // the key.
member: V // the member type: value.
) → RedisFuture<Boolean> // Boolean integer-reply specifically: true if the element is a member of the set. false if the element is not a member of the set, or if key does not exist.
sismember(
key: K, // the key.
member: V // the member type: value.
) → Mono<Boolean> // Boolean integer-reply specifically: true if the element is a member of the set. false if the element is not a member of the set, or if key does not exist.
SIsMember(
ctx: context.Context,
key: string,
member: interface{}
) → *BoolCmd
SetContains(
key: RedisKey, // The key of the set.
value: RedisValue,
flags: CommandFlags // The flags to use for this operation.
) → bool // true if the element is a member of the set. false if the element is not a member of the set, or if key does not exist.
SetContains(
key: RedisKey, // The key of the set.
values: RedisValue[], // The members to check for.
flags: CommandFlags // The flags to use for this operation.
) → bool[] // true if the element is a member of the set. false if the element is not a member of the set, or if key does not exist.
SetContains(
key: RedisKey, // The key of the set.
value: RedisValue,
flags: CommandFlags // The flags to use for this operation.
) → bool // true if the element is a member of the set. false if the element is not a member of the set, or if key does not exist.
SetContains(
key: RedisKey, // The key of the set.
values: RedisValue[], // The members to check for.
flags: CommandFlags // The flags to use for this operation.
) → bool[] // true if the element is a member of the set. false if the element is not a member of the set, or if key does not exist.
SetContains(
key: RedisKey, // The key of the set.
value: RedisValue,
flags: CommandFlags // The flags to use for this operation.
) → bool // true if the element is a member of the set. false if the element is not a member of the set, or if key does not exist.
SetContains(
key: RedisKey, // The key of the set.
values: RedisValue[], // The members to check for.
flags: CommandFlags // The flags to use for this operation.
) → bool[] // true if the element is a member of the set. false if the element is not a member of the set, or if key does not exist.
SetContains(
key: RedisKey, // The key of the set.
value: RedisValue,
flags: CommandFlags // The flags to use for this operation.
) → bool // true if the element is a member of the set. false if the element is not a member of the set, or if key does not exist.
SetContains(
key: RedisKey, // The key of the set.
values: RedisValue[], // The members to check for.
flags: CommandFlags // The flags to use for this operation.
) → bool[] // true if the element is a member of the set. false if the element is not a member of the set, or if key does not exist.
sismember(
$key: string,
$member: string
) → int
sismember(
key: K,
member: M
) → (bool)
sismember(
key: K,
member: M
) → (bool)