linsert(
name: KeyT,
where: str,
refvalue: str,
value: str
) → Union[Awaitable[int], int]
No method signature available for this client.
linsert(
key: byte[],
where: ListPosition, // can be BEFORE or AFTER
value: byte[] pivot final byte[] // the value
) → long // The length of the list after the insert operation, or -1 when the value pivot was not found
linsert(
key: String,
where: ListPosition, // can be BEFORE or AFTER
value: String pivot final String // the value
) → long // The length of the list after the insert operation, or -1 when the value pivot was not found
linsert(
key: String,
where: ListPosition, // can be BEFORE or AFTER
pivot: String, // reference value
value: String // the value
) → long // The length of the list after the insert operation, or -1 when the value pivot was not found
linsert(
key: K, // the key.
before: boolean, // the before.
pivot: V, // the pivot.
value: V // the value.
) → Long // Long integer-reply the length of the list after the insert operation, or -1 when the value pivot was not found.
linsert(
key: K, // the key.
before: boolean, // the before.
pivot: V, // the pivot.
value: V // the value.
) → RedisFuture<Long> // Long integer-reply the length of the list after the insert operation, or -1 when the value pivot was not found.
linsert(
key: K, // the key.
before: boolean, // the before.
pivot: V, // the pivot.
value: V // the value.
) → Mono<Long> // Long integer-reply the length of the list after the insert operation, or -1 when the value pivot was not found.
LInsert(
ctx: context.Context,
key: Any,
op: string,
pivot: Any,
value: interface{}
) → *IntCmd
ListInsertAfter(
key: RedisKey, // The key of the list.
pivot: RedisValue, // The value to insert after.
value: RedisValue, // The value to insert.
flags: CommandFlags // The flags to use for this operation.
) → long // The length of the list after the insert operation, or -1 when the value pivot was not found.
ListInsertBefore(
key: RedisKey, // The key of the list.
pivot: RedisValue, // The value to insert before.
value: RedisValue, // The value to insert.
flags: CommandFlags // The flags to use for this operation.
) → long // The length of the list after the insert operation, or -1 when the value pivot was not found.
ListInsertAfter(
key: RedisKey, // The key of the list.
pivot: RedisValue, // The value to insert after.
value: RedisValue, // The value to insert.
flags: CommandFlags // The flags to use for this operation.
) → long // The length of the list after the insert operation, or -1 when the value pivot was not found.
ListInsertBefore(
key: RedisKey, // The key of the list.
pivot: RedisValue, // The value to insert before.
value: RedisValue, // The value to insert.
flags: CommandFlags // The flags to use for this operation.
) → long // The length of the list after the insert operation, or -1 when the value pivot was not found.
ListInsertAfter(
key: RedisKey, // The key of the list.
pivot: RedisValue, // The value to insert after.
value: RedisValue, // The value to insert.
flags: CommandFlags // The flags to use for this operation.
) → long // The length of the list after the insert operation, or -1 when the value pivot was not found.
ListInsertBefore(
key: RedisKey, // The key of the list.
pivot: RedisValue, // The value to insert before.
value: RedisValue, // The value to insert.
flags: CommandFlags // The flags to use for this operation.
) → long // The length of the list after the insert operation, or -1 when the value pivot was not found.
ListInsertAfter(
key: RedisKey, // The key of the list.
pivot: RedisValue, // The value to insert after.
value: RedisValue, // The value to insert.
flags: CommandFlags // The flags to use for this operation.
) → long // The length of the list after the insert operation, or -1 when the value pivot was not found.
ListInsertBefore(
key: RedisKey, // The key of the list.
pivot: RedisValue, // The value to insert before.
value: RedisValue, // The value to insert.
flags: CommandFlags // The flags to use for this operation.
) → long // The length of the list after the insert operation, or -1 when the value pivot was not found.
linsert(
$key: string,
$whence: Any,
$pivot: Any,
$value: Any
) → int
linsert_before(
key: K,
pivot: P,
value: V
) → (isize)
linsert_after(
key: K,
pivot: P,
value: V
) → (isize)
linsert_before(
key: K,
pivot: P,
value: V
) → (isize)
linsert_after(
key: K,
pivot: P,
value: V
) → (isize)