decrby(
name: KeyT,
amount: int = 1
) → ResponseT
DECR(
key: RedisArgument
) → Any
DECRBY(
key: RedisArgument,
decrement: number
) → Any
decrBy(
key: byte[],
decrement: long
) → long // The value of key after the decrement
decr(
key: byte[]
) → long // The value of key after the decrement
decrBy(
key: String,
decrement: long
) → long // The value of key after the decrement
decr(
key: String
) → long // The value of key after the decrement
decr(
key: K // the key.
) → Long // Long integer-reply the value of key after the decrement.
decrby(
key: K, // the key.
amount: long // the decrement type: long.
) → Long // Long integer-reply the value of key after the decrement.
decr(
key: K // the key.
) → RedisFuture<Long> // Long integer-reply the value of key after the decrement.
decrby(
key: K, // the key.
amount: long // the decrement type: long.
) → RedisFuture<Long> // Long integer-reply the value of key after the decrement.
decr(
key: K // the key.
) → Mono<Long> // Long integer-reply the value of key after the decrement.
decrby(
key: K, // the key.
amount: long // the decrement type: long.
) → Mono<Long> // Long integer-reply the value of key after the decrement.
Decr(
ctx: context.Context,
key: string
) → *IntCmd
DecrBy(
ctx: context.Context,
key: string,
decrement: int64
) → *IntCmd
StringDecrement(
key: RedisKey, // The key of the string.
value: long, // The amount to decrement by (defaults to 1).
flags: CommandFlags // The flags to use for this operation.
) → long // The value of key after the decrement.
StringDecrement(
key: RedisKey, // The key of the string.
value: double, // The amount to decrement by (defaults to 1).
flags: CommandFlags // The flags to use for this operation.
) → double // The value of key after the decrement.
StringDecrement(
key: RedisKey, // The key of the string.
value: long, // The amount to decrement by (defaults to 1).
flags: CommandFlags // The flags to use for this operation.
) → long // The value of key after the decrement.
StringDecrement(
key: RedisKey, // The key of the string.
value: double, // The amount to decrement by (defaults to 1).
flags: CommandFlags // The flags to use for this operation.
) → double // The value of key after the decrement.
StringDecrement(
key: RedisKey, // The key of the string.
value: long, // The amount to decrement by (defaults to 1).
flags: CommandFlags // The flags to use for this operation.
) → long // The value of key after the decrement.
StringDecrement(
key: RedisKey, // The key of the string.
value: double, // The amount to decrement by (defaults to 1).
flags: CommandFlags // The flags to use for this operation.
) → double // The value of key after the decrement.
StringDecrement(
key: RedisKey, // The key of the string.
value: long, // The amount to decrement by (defaults to 1).
flags: CommandFlags // The flags to use for this operation.
) → long // The value of key after the decrement.
StringDecrement(
key: RedisKey, // The key of the string.
value: double, // The amount to decrement by (defaults to 1).
flags: CommandFlags // The flags to use for this operation.
) → double // The value of key after the decrement.
decr(
$key: string
) → int
decrby(
$key: string,
$decrement: int
) → int
decr(
key: K,
delta: V
) → (isize)
decr(
key: K,
delta: V
) → (isize)