getbit(
name: KeyT,
offset: int
) → ResponseT
GETBIT(
key: RedisArgument,
offset: number
) → Any
getbit(
key: byte[],
offset: long
) → boolean
getbit(
key: String,
offset: long
) → boolean
getbit(
key: K, // the key.
offset: long // the offset type: long.
) → Long // Long integer-reply the bit value stored at <em>offset</em>.
getbit(
key: K, // the key.
offset: long // the offset type: long.
) → RedisFuture<Long> // Long integer-reply the bit value stored at <em>offset</em>.
getbit(
key: K, // the key.
offset: long // the offset type: long.
) → Mono<Long> // Long integer-reply the bit value stored at <em>offset</em>.
GetBit(
ctx: context.Context,
key: string,
offset: int64
) → *IntCmd
StringGetBit(
key: RedisKey, // The key of the string.
offset: long, // The offset in the string to get a bit at.
flags: CommandFlags // The flags to use for this operation.
) → bool // The bit value stored at offset.
StringGetBitAsync(
key: RedisKey,
offset: long,
flags: CommandFlags
) → Task<bool>
StringGetBit(
key: RedisKey, // The key of the string.
offset: long, // The offset in the string to get a bit at.
flags: CommandFlags // The flags to use for this operation.
) → bool // The bit value stored at offset.
StringGetBitAsync(
key: RedisKey,
offset: long,
flags: CommandFlags
) → Task<bool>
StringGetBitAsync(
key: RedisKey,
offset: long,
flags: CommandFlags
) → Task<bool>
StringGetBit(
key: RedisKey, // The key of the string.
offset: long, // The offset in the string to get a bit at.
flags: CommandFlags // The flags to use for this operation.
) → bool // The bit value stored at offset.
StringGetBit(
key: RedisKey, // The key of the string.
offset: long, // The offset in the string to get a bit at.
flags: CommandFlags // The flags to use for this operation.
) → bool // The bit value stored at offset.
StringGetBitAsync(
key: RedisKey,
offset: long,
flags: CommandFlags
) → Task<bool>
getbit(
$key: string,
$offset: Any
) → int
getbit(
key: K,
offset: usize
) → (bool)
getbit(
key: K,
offset: usize
) → (bool)