incrby(
name: KeyT,
amount: int = 1
) → ResponseT
INCR(
key: RedisArgument
) → Any
INCRBY(
key: RedisArgument,
increment: number
) → Any
incrBy(
key: byte[],
increment: long
) → long // The value of key after the increment
incr(
key: byte[]
) → long // The value of key after the increment
incrBy(
key: String,
increment: long
) → long // The value of key after the increment
incr(
key: String
) → long // The value of key after the increment
incr(
key: K // the key.
) → Long // Long integer-reply the value of key after the increment.
incrby(
key: K, // the key.
amount: long // the increment type: long.
) → Long // Long integer-reply the value of key after the increment.
incr(
key: K // the key.
) → RedisFuture<Long> // Long integer-reply the value of key after the increment.
incrby(
key: K, // the key.
amount: long // the increment type: long.
) → RedisFuture<Long> // Long integer-reply the value of key after the increment.
incr(
key: K // the key.
) → Mono<Long> // Long integer-reply the value of key after the increment.
incrby(
key: K, // the key.
amount: long // the increment type: long.
) → Mono<Long> // Long integer-reply the value of key after the increment.
Incr(
ctx: context.Context,
key: string
) → *IntCmd
IncrBy(
ctx: context.Context,
key: string,
value: int64
) → *IntCmd
StringIncrement(
key: RedisKey, // The key of the string.
value: long, // The amount to increment by (defaults to 1).
flags: CommandFlags // The flags to use for this operation.
) → long // The value of key after the increment.
StringIncrement(
key: RedisKey, // The key of the string.
value: double, // The amount to increment by (defaults to 1).
flags: CommandFlags // The flags to use for this operation.
) → double // The value of key after the increment.
StringIncrement(
key: Any, // The key of the string.
-value: Any,
flags: Any // The flags to use for this operation.
) → return // The value of key after the increment.
StringIncrement(
key: Any, // The key of the string.
-value: Any,
flags: Any // The flags to use for this operation.
) → return // The value of key after the increment.
StringIncrement(
key: RedisKey, // The key of the string.
value: long, // The amount to increment by (defaults to 1).
flags: CommandFlags // The flags to use for this operation.
) → long // The value of key after the increment.
StringIncrement(
key: RedisKey, // The key of the string.
value: long, // The amount to increment by (defaults to 1).
flags: CommandFlags // The flags to use for this operation.
) → long // The value of key after the increment.
StringIncrement(
key: RedisKey, // The key of the string.
value: double, // The amount to increment by (defaults to 1).
flags: CommandFlags // The flags to use for this operation.
) → double // The value of key after the increment.
StringIncrement(
key: Any, // The key of the string.
-value: Any,
flags: Any // The flags to use for this operation.
) → return // The value of key after the increment.
StringIncrement(
key: Any, // The key of the string.
-value: Any,
flags: Any // The flags to use for this operation.
) → return // The value of key after the increment.
StringIncrement(
key: RedisKey, // The key of the string.
value: long, // The amount to increment by (defaults to 1).
flags: CommandFlags // The flags to use for this operation.
) → long // The value of key after the increment.
incr(
$key: string
) → int
incrby(
$key: string,
$increment: int
) → int
incr(
key: K,
delta: V
) → (isize)
incr(
key: K,
delta: V
) → (isize)