hexists(
name: str,
key: str
) → Union[Awaitable[bool], bool]
HEXISTS(
key: RedisArgument,
field: RedisArgument
) → Any
hexists(
key: byte[],
field: byte[]
) → boolean // true if the hash stored at key contains the specified field, false if the key is not found or the field is not present.
hexists(
key: String,
field: String
) → boolean // true if the hash stored at key contains the specified field, false if the key is not found or the field is not present.
hexists(
key: K, // the key.
field: K // the field type: key.
) → Boolean // Boolean integer-reply specifically: true if the hash contains field. false if the hash does not contain field, or key does not exist.
hexists(
key: K, // the key.
field: K // the field type: key.
) → RedisFuture<Boolean> // Boolean integer-reply specifically: true if the hash contains field. false if the hash does not contain field, or key does not exist.
hexists(
key: K, // the key.
field: K // the field type: key.
) → Mono<Boolean> // Boolean integer-reply specifically: true if the hash contains field. false if the hash does not contain field, or key does not exist.
HExists(
ctx: context.Context,
key: Any,
field: string
) → *BoolCmd
HashExists(
key: RedisKey, // The key of the hash.
hashField: RedisValue, // The field in the hash to check.
flags: CommandFlags // The flags to use for this operation.
) → bool // true if the hash contains field, false if the hash does not contain field, or key does not exist.
HashExists(
key: RedisKey, // The key of the hash.
hashField: RedisValue, // The field in the hash to check.
flags: CommandFlags // The flags to use for this operation.
) → bool // true if the hash contains field, false if the hash does not contain field, or key does not exist.
HashExists(
key: RedisKey, // The key of the hash.
hashField: RedisValue, // The field in the hash to check.
flags: CommandFlags // The flags to use for this operation.
) → bool // true if the hash contains field, false if the hash does not contain field, or key does not exist.
HashExists(
key: RedisKey, // The key of the hash.
hashField: RedisValue, // The field in the hash to check.
flags: CommandFlags // The flags to use for this operation.
) → bool // true if the hash contains field, false if the hash does not contain field, or key does not exist.
hexists(
$key: string,
$field: string
) → int
hexists(
key: K,
field: F
) → (bool)
hexists(
key: K,
field: F
) → (bool)