hincrby(
name: str,
key: str,
amount: int = 1
) → Union[Awaitable[int], int]
HINCRBY(
key: RedisArgument,
field: RedisArgument,
increment: number
) → Any
hincrBy(
key: byte[],
field: byte[],
value: long
) → long // The value of key after the increment
hincrBy(
key: String,
field: String,
value: long
) → long // The value of key after the increment
hincrby(
key: K, // the key.
field: K, // the field type: key.
amount: long // the increment type: long.
) → Long // Long integer-reply the value at field after the increment operation.
hincrby(
key: K, // the key.
field: K, // the field type: key.
amount: long // the increment type: long.
) → RedisFuture<Long> // Long integer-reply the value at field after the increment operation.
hincrby(
key: K, // the key.
field: K, // the field type: key.
amount: long // the increment type: long.
) → Mono<Long> // Long integer-reply the value at field after the increment operation.
HIncrBy(
ctx: context.Context,
key: Any,
field: string,
incr: int64
) → *IntCmd
HashDecrement(
key: RedisKey, // The key of the hash.
hashField: RedisValue, // The field in the hash to decrement.
value: long, // The amount to decrement by.
flags: CommandFlags // The flags to use for this operation.
) → long // The value at field after the decrement operation.
HashDecrement(
key: RedisKey, // The key of the hash.
hashField: RedisValue, // The field in the hash to decrement.
value: double, // The amount to decrement by.
flags: CommandFlags // The flags to use for this operation.
) → double // The value at field after the decrement operation.
HashIncrement(
key: RedisKey, // The key of the hash.
hashField: RedisValue, // The field in the hash to increment.
value: long, // The amount to increment by.
flags: CommandFlags // The flags to use for this operation.
) → long // The value at field after the increment operation.
HashIncrement(
key: RedisKey, // The key of the hash.
hashField: RedisValue, // The field in the hash to increment.
value: double, // The amount to increment by.
flags: CommandFlags // The flags to use for this operation.
) → double // The value at field after the increment operation.
HashDecrement(
key: RedisKey, // The key of the hash.
hashField: RedisValue, // The field in the hash to decrement.
value: long, // The amount to decrement by.
flags: CommandFlags // The flags to use for this operation.
) → long // The value at field after the decrement operation.
HashDecrement(
key: RedisKey, // The key of the hash.
hashField: RedisValue, // The field in the hash to decrement.
value: long, // The amount to decrement by.
flags: CommandFlags // The flags to use for this operation.
) → long // The value at field after the decrement operation.
HashDecrement(
key: RedisKey, // The key of the hash.
hashField: RedisValue, // The field in the hash to decrement.
value: double, // The amount to decrement by.
flags: CommandFlags // The flags to use for this operation.
) → double // The value at field after the decrement operation.
HashIncrement(
key: RedisKey, // The key of the hash.
hashField: RedisValue, // The field in the hash to increment.
value: long, // The amount to increment by.
flags: CommandFlags // The flags to use for this operation.
) → long // The value at field after the increment operation.
HashIncrement(
key: RedisKey, // The key of the hash.
hashField: RedisValue, // The field in the hash to increment.
value: double, // The amount to increment by.
flags: CommandFlags // The flags to use for this operation.
) → double // The value at field after the increment operation.
HashDecrement(
key: RedisKey, // The key of the hash.
hashField: RedisValue, // The field in the hash to decrement.
value: long, // The amount to decrement by.
flags: CommandFlags // The flags to use for this operation.
) → long // The value at field after the decrement operation.
hincrby(
$key: string,
$field: string,
$increment: int
) → int
hincr(
key: K,
field: F,
delta: D
) → (f64)
hincr(
key: K,
field: F,
delta: D
) → (f64)